:root {
  --ink: #1a120c;
  --paper: #f6efe4;
  --paper-2: #efe4d3;
  --mute: #7a6a58;
  --line: #d8c9b4;
  --ember: #c45a1a;
  --ember-hot: #e07a2a;
  --gold: #e8b86a;
  --shade: rgba(18, 10, 6, 0.42);
  --max: 42rem;
  --radius: 14px;
  --bar-h: 3.15rem;
  --cta-h: 3.4rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--paper);
  padding-bottom: calc(var(--cta-h) + 0.6rem);
}

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

.wrap { width: min(100% - 2rem, 46rem); margin-inline: auto; }

.preview-bar {
  margin: 0;
  padding: 0.45rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #f6efe4;
  background: #2a1b12;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  align-items: center;
  gap: 0.55rem;
  min-height: var(--bar-h);
  padding: 0.4rem 0.8rem;
  background: rgba(246, 239, 228, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav {
  flex-wrap: nowrap;
  gap: 0.15rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}

.nav::-webkit-scrollbar { display: none; }

.nav a {
  color: #4a3d31;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.28rem 0.45rem;
  white-space: nowrap;
}

.nav-tel {
  display: none;
  background: var(--ember);
  color: #fff7ee;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  position: relative;
  color: var(--paper);
  min-height: 0;
  background: #1a100a;
}

.hero-img {
  position: relative;
  
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.hero-shade {
  position: relative;
  
  background:
    linear-gradient(180deg, rgba(12, 7, 4, 0.2) 0%, rgba(12, 7, 4, 0.28) 28%, rgba(12, 7, 4, 0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 1.5rem;
}

.kicker, .sec-kicker {
  margin: 0 0 0.35rem;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold);
}

.sec-kicker { color: var(--ember); }

h1, h2, h3 {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
h2 { font-size: 1.5rem; }
h3, .menu-sub { font-size: 1.12rem; margin-top: 1.4rem; }

.sub { margin: 0 0 0.75rem; color: #f0e4d4; max-width: 28rem; }

.rating-row {
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  align-items: baseline;
  margin-bottom: 0.85rem;
}

.rating-num { font-weight: 900; color: var(--gold); }
.rating-meta { color: #d8c9b4; font-size: 0.92rem; }

.cta-row {
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.3rem 0 0.55rem;
}

.btn {
  display: inline-block;
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-tel { background: var(--ember); color: #fff7ee; }
.btn-fb, .btn-map { background: #fff7ee; color: var(--ink); }

.note { margin: 0 0 0.75rem; color: #cfc0ae; font-size: 0.86rem; }

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
  font-size: 0.9rem;
  color: #efe4d3;
}

.hero-meta span {
  display: inline-block;
  min-width: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.4rem;
}

.hours-note {
  margin: 0.65rem 0 0;
  color: #d8c9b4;
  font-size: 0.78rem;
  max-width: 34rem;
}

.hours-note-inline {
  color: var(--mute) !important;
  font-size: 0.86rem;
}

section { padding: 2.2rem 0; }

.lead { color: var(--mute); margin-top: 0; }

.why {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.why li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.why strong { display: block; margin-bottom: 0.25rem; }
.why p { margin: 0; color: #4a3d31; }

.band { background: var(--paper-2); }

.menu-sheet { margin: 1.1rem 0 0; }

.menu-sheet figcaption,
.split figcaption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--mute);
}

.menu-slot {
  background: #fff;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  min-height: 12rem;
}

.menu-slot-label {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: var(--ember);
}

.menu-slot p { margin: 0.35rem 0; color: #4a3d31; font-size: 0.92rem; }
.menu-slot code { font-size: 0.86rem; }

.menu-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.menu-photo-link { display: block; }

.featured {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.featured li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1.05rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 0.8rem;
}

.featured p {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  color: #4a3d31;
  font-size: 0.92rem;
}

.price {
  font-weight: 900;
  color: var(--ember);
  font-size: 1.05rem;
}

.price-open {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--mute);
}

.banquet {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.banquet li {
  background: #2a1b12;
  color: #fff7ee;
  border-radius: var(--radius);
  padding: 0.75rem 0.55rem;
  text-align: center;
}

.banquet strong { display: block; font-size: 0.78rem; color: var(--gold); }
.banquet span { font-weight: 900; font-size: 1.05rem; }

.banquet-note { margin-top: 0.7rem !important; }

.chip-lead { color: var(--mute); font-size: 0.9rem; margin: 0.2rem 0 0.7rem; }

.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chips li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.chips em {
  font-style: normal;
  color: var(--ember);
  font-weight: 900;
  margin-left: 0.2rem;
}

.reviews {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

blockquote {
  margin: 0;
  background: #fff;
  border-left: 4px solid var(--ember);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.95rem 1.05rem;
}

blockquote p { margin: 0 0 0.55rem; }
blockquote footer { color: var(--mute); font-size: 0.82rem; }

.visit { padding-bottom: 2.4rem; }
.visit-grid p { margin: 0.25rem 0; }
.fine { margin-top: 1.1rem !important; color: var(--mute); font-size: 0.86rem; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: block;
  text-align: center;
  background: var(--ember);
  color: #fff7ee;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1rem;
  box-shadow: 0 -6px 20px rgba(26, 18, 12, 0.18);
}

.kiln-cards { margin-top: 1.1rem; }
.kiln-note { margin-top: 1rem !important; }

@media (min-width: 720px) {
  .reviews { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 5rem 0 1.8rem; }
  .nav-tel { display: inline-block; }
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
  .featured { grid-template-columns: 1fr 1fr; }
  .featured li:last-child { grid-column: 1 / -1; }
}

.space-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.9rem;
}
.space-grid figure { margin: 0; }
.space-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}
.space-grid figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--mute);
}
@media (min-width: 720px) {
  .space-grid { grid-template-columns: 1fr 1fr; }
}

.menu-caption { margin-bottom: 0.85rem; }

.menu-jump {
  flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 0 1.1rem;
  padding: 0.1rem 0 0.35rem;
  position: sticky;
  top: var(--bar-h);
  z-index: 15;
  background: linear-gradient(180deg, var(--paper-2) 70%, transparent);
  padding-bottom: 0.55rem;
}
.menu-jump::-webkit-scrollbar { display: none; }
.menu-jump a {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.36rem 0.78rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.menu-jump a:hover { border-color: var(--ember); color: var(--ember); }

.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem 0.55rem;
  margin: 0 0 0.85rem;
  scroll-margin-top: calc(var(--bar-h) + 3.2rem);
}
.menu-card h3 {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.12rem;
  margin: 0 0 0.45rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list li {
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.48rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child { border-bottom: 0; }
.dish {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-weight: 600;
  font-size: 0.98rem;
}
.menu-list .price {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 900;
  color: var(--ember);
  font-size: 0.98rem;
  white-space: nowrap;
}
.menu-list .price::before { content: "$"; font-weight: 700; font-size: 0.78rem; margin-right: 0.08rem; }

.tag-sig {
  display: inline-block;
  font-family: "Noto Sans TC", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #fff7ee;
  background: var(--ember);
  border-radius: 999px;
  padding: 0.08rem 0.42rem;
  margin-left: 0.28rem;
  vertical-align: 0.12em;
}

.banquet-lead {
  margin: 0 0 0.7rem;
  color: #4a3d31;
  font-size: 0.9rem;
}
.banquet-card .banquet { margin-top: 0; }
.banquet .price-plain,
.banquet span::before { content: "$"; font-size: 0.78rem; margin-right: 0.05rem; }

.menu-paper {
  margin: 1.15rem 0 0;
  flex-direction: column;
  align-items: flex-start;
}
.menu-paper-link {
  display: inline-flex;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.menu-paper-link img {
  width: 5.6rem;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.menu-paper-link span {
  font-weight: 700;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--ember);
  color: var(--ember);
  padding-bottom: 0.1rem;
}
.menu-paper figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--mute);
  max-width: 28rem;
}

.look-fig { margin: 1.1rem 0 0; }
.look-fig img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.look-fig figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--mute);
}
.topbar,.nav,.cta-row,.chips,.menu-jump,.menu-list li,.menu-paper,.rating-row{display:flex;}
.hero-shade{display:none;height:0;overflow:hidden;}
@media (min-width: 720px) {
  .hero {
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    min-height: 36rem;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 32%;
  }
  .hero-shade {
    display: block;
    position: absolute;
    inset: 0;
    height: auto;
    overflow: visible;
    background: linear-gradient(180deg, rgba(12, 7, 4, 0.15) 0%, rgba(12, 7, 4, 0.25) 35%, rgba(12, 7, 4, 0.88) 100%);
  }
}
