:root {
  color-scheme: dark;
  font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #f8f2e8;
  background: #11100e;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.restaurant-site {
  --ink: #f8f2e8;
  --muted: rgba(248, 242, 232, 0.72);
  --soft: rgba(248, 242, 232, 0.08);
  --panel: rgba(25, 23, 20, 0.86);
  --paper: #f7efe3;
  --paper-ink: #201b16;
  --line: rgba(248, 242, 232, 0.16);
  --amber: #d89b50;
  --tomato: #bf5547;
  --herb: #7f9b68;
  --charcoal: #11100e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.72), #11100e 780px),
    #11100e;
}

.restaurant-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 14px clamp(14px, 3vw, 34px) 0;
}

.restaurant-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1440px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 16, 14, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.is-scrolled .restaurant-nav {
  min-height: 62px;
  background: rgba(17, 16, 14, 0.86);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.restaurant-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #21150c;
  background: var(--amber);
  box-shadow: 0 14px 34px rgba(216, 155, 80, 0.24);
  font-weight: 950;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.restaurant-links,
.restaurant-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.restaurant-links {
  justify-content: center;
}

.restaurant-links a {
  padding: 10px 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease;
}

.restaurant-links a:hover,
.restaurant-links a.is-active {
  color: var(--amber);
}

.restaurant-actions {
  justify-content: flex-end;
}

.phone-link,
.nav-cta,
.primary-button,
.secondary-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.phone-link,
.secondary-button {
  color: var(--ink);
  background: rgba(248, 242, 232, 0.08);
}

.nav-cta,
.primary-button,
.submit-button {
  color: #1f140c;
  border-color: rgba(216, 155, 80, 0.72);
  background: var(--amber);
  box-shadow: 0 16px 38px rgba(216, 155, 80, 0.2);
}

.phone-link:hover,
.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.submit-button:hover,
.back-top:hover {
  transform: translateY(-2px);
}

.restaurant-hero {
  position: relative;
  width: min(1440px, calc(100% - 32px));
  min-height: clamp(560px, 74svh, 700px);
  margin: -86px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: #080706;
  box-shadow: var(--shadow);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 44%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(720px, 100%);
  min-height: inherit;
  padding: clamp(120px, 12vw, 166px) clamp(22px, 6vw, 76px) clamp(44px, 6vw, 74px);
}

.eyebrow,
.dish-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1,
.section-heading h2,
.space-copy h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-content h1 {
  max-width: 700px;
  font-size: clamp(38px, 5.1vw, 68px);
  line-height: 1.05;
}

.hero-content p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.75;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(248, 242, 232, 0.18);
  border-radius: 8px;
  background: rgba(248, 242, 232, 0.08);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: rgba(248, 242, 232, 0.64);
  font-size: 12px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 950;
}

.service-note {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
  z-index: 2;
  width: min(310px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(248, 242, 232, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(17, 16, 14, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.service-note span {
  color: var(--herb);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-note strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.service-note p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.quick-booking,
.content-section,
.restaurant-footer {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-booking {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: -28px;
  border: 1px solid rgba(248, 242, 232, 0.14);
  border-radius: 8px;
  background: rgba(248, 242, 232, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.quick-booking article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 20px;
  background: rgba(26, 24, 21, 0.96);
}

.quick-booking span,
.visit-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
}

.quick-booking strong {
  font-size: 20px;
}

.quick-booking p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.content-section {
  padding: clamp(74px, 9vw, 124px) 0 0;
  scroll-margin-top: 118px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 76px);
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.space-copy h2 {
  font-size: clamp(34px, 4.8vw, 70px);
}

.section-heading p,
.space-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.menu-tabs button,
.option-row button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(248, 242, 232, 0.08);
  cursor: pointer;
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.menu-tabs button:hover,
.option-row button:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 155, 80, 0.58);
}

.menu-tabs button.is-active,
.option-row button.is-active {
  color: #1f140c;
  border-color: var(--amber);
  background: var(--amber);
}

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

.menu-card,
.space-copy,
.booking-form,
.booking-summary,
.visit-grid article {
  border: 1px solid rgba(248, 242, 232, 0.14);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.menu-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 280px;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, opacity 160ms ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 155, 80, 0.54);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 26px;
}

.menu-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.dish-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(248, 242, 232, 0.2);
}

.dish-meta strong {
  color: var(--amber);
  font-size: 26px;
}

.dish-meta small {
  color: var(--muted);
  font-weight: 900;
}

.space-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 18px;
  align-items: stretch;
}

.space-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.space-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.space-copy p {
  margin-top: 22px;
}

.space-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(248, 242, 232, 0.12);
  border-radius: 8px;
  background: rgba(248, 242, 232, 0.12);
}

.space-list article {
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 16px;
  background: rgba(248, 242, 232, 0.08);
}

.space-list strong {
  color: var(--amber);
  font-size: 22px;
}

.space-list span {
  color: var(--muted);
  line-height: 1.45;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 18px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
}

.booking-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-form legend {
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 950;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guest-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 12px;
}

.guest-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.guest-fields input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(248, 242, 232, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(248, 242, 232, 0.08);
}

.guest-fields input::placeholder {
  color: rgba(248, 242, 232, 0.44);
}

.submit-button {
  width: fit-content;
  cursor: pointer;
}

.booking-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.booking-summary h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 650;
  letter-spacing: 0;
}

.booking-summary dl {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(248, 242, 232, 0.12);
  border-radius: 8px;
  background: rgba(248, 242, 232, 0.12);
}

.booking-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 14px;
  background: rgba(248, 242, 232, 0.08);
}

.booking-summary dt {
  color: var(--muted);
  font-weight: 900;
}

.booking-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 950;
}

.reply-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.reply-box span {
  color: var(--muted);
  font-weight: 900;
}

.reply-box strong {
  color: var(--amber);
  font-size: clamp(30px, 4vw, 50px);
}

.booking-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.visit-grid article {
  min-height: 232px;
  padding: 22px;
}

.visit-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.28;
}

.visit-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.restaurant-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(74px, 9vw, 124px);
  padding: 32px 0 54px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.restaurant-footer a {
  text-decoration: none;
  font-weight: 900;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #1f140c;
  background: var(--amber);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.restaurant-site a:focus-visible,
.restaurant-site button:focus-visible,
.restaurant-site input:focus-visible {
  outline: 3px solid rgba(216, 155, 80, 0.34);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .restaurant-nav {
    grid-template-columns: 1fr auto;
  }

  .restaurant-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .restaurant-hero {
    min-height: 680px;
  }

  .service-note {
    right: 22px;
    bottom: 22px;
  }

  .section-heading,
  .space-section,
  .booking-layout {
    grid-template-columns: 1fr;
  }

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

  .space-media {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .restaurant-header {
    padding: 10px 12px 0;
  }

  .restaurant-nav {
    gap: 12px;
  }

  .brand-copy strong {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .restaurant-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phone-link {
    display: none;
  }

  .restaurant-hero,
  .quick-booking,
  .content-section,
  .restaurant-footer {
    width: min(100% - 24px, 1440px);
  }

  .restaurant-hero {
    min-height: auto;
    margin-top: -80px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 50%, rgba(0, 0, 0, 0.64) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
  }

  .hero-content {
    min-height: 0;
    padding: 132px 20px 170px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 16px;
  }

  .quick-booking,
  .menu-grid,
  .space-list,
  .guest-fields,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-facts div {
    min-height: 74px;
    padding: 10px;
  }

  .hero-facts dt {
    font-size: 11px;
  }

  .hero-facts dd {
    font-size: 13px;
    line-height: 1.35;
  }

  .service-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  .section-heading h2,
  .space-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-heading p,
  .space-copy p {
    font-size: 16px;
  }

  .menu-card {
    min-height: 240px;
  }

  .space-media {
    min-height: 360px;
  }

  .option-row button,
  .menu-tabs button {
    flex: 1 1 auto;
  }

  .submit-button {
    width: 100%;
  }

  .restaurant-footer {
    flex-direction: column;
  }

  .content-section {
    scroll-margin-top: 206px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
