:root {
  --red: #8f1111;
  --red-2: #b81f18;
  --dark: #140706;
  --ink: #24120f;
  --cream: #fff4df;
  --cream-2: #ffe8c0;
  --gold: #f7b733;
  --gold-2: #ffd36c;
  --jade: #1f6d5b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 7, 6, 0.24);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
  --font-base: 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Noto Serif SC', 'Noto Sans', serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 183, 51, 0.18), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.section {
  position: relative;
  padding: 110px 0;
}

.section--cream {
  background: var(--cream);
}

.section--red {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 7, 6, 0.84), rgba(143, 17, 17, 0.9)),
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.25), transparent 28rem),
    var(--red);
}

.section--dark {
  color: var(--white);
  background: var(--dark);
}

.section-title {
  max-width: 660px;
  margin-bottom: 42px;
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.96;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 12vw, 9.6rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

p {
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(20, 7, 6, 0.24);
}

.btn--gold {
  color: #351600;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 34px rgba(247, 183, 51, 0.3);
}

.btn--red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
}

.btn--glass,
.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.btn--outline:hover,
.btn--glass:hover {
  border-color: var(--gold);
  background: rgba(247, 183, 51, 0.16);
}

.hover-lift {
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.hover-lift:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow);
}

/* Navbar */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: var(--white);
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.quick-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 7, 6, 0.08);
  backdrop-filter: blur(8px);
  transition: opacity 220ms ease, max-height 220ms ease, background 220ms ease;
}

.quick-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.quick-bar a,
.quick-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.95;
}

.quick-bar__socials {
  display: inline-flex;
  gap: 0.75rem;
}

.navbar {
  transition: background 240ms ease, box-shadow 240ms ease;
}

.navbar__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 210px;
}

.brand__logo-wrap {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand__text small {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu {
  display: contents;
}

.nav-links {
  justify-self: center;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: background 220ms ease, color 220ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 38%;
}

.nav-order {
  justify-self: end;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
  color: #fff;
}

.site-header.is-solid,
.site-header:hover,
body.nav-open .site-header {
  color: var(--white);
  background: rgba(143, 17, 17, 0.98);
  box-shadow: 0 18px 44px rgba(20, 7, 6, 0.24);
}

.site-header.is-solid .quick-bar,
.site-header:hover .quick-bar,
body.nav-open .site-header .quick-bar {
  background: rgba(20, 7, 6, 0.18);
}

.site-header.is-solid .navbar,
.site-header:hover .navbar,
body.nav-open .site-header .navbar {
  background: rgba(143, 17, 17, 0.98);
}



/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__video,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
}

.hero::before {
  content: '';
  background: url('/images/hero-poster.svg') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(247, 183, 51, 0.2), transparent 28rem),
    linear-gradient(90deg, rgba(20, 7, 6, 0.82) 0%, rgba(20, 7, 6, 0.48) 50%, rgba(143, 17, 17, 0.36) 100%);
  z-index: -2;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  z-index: -1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0),
    linear-gradient(135deg, transparent 48%, rgba(247, 183, 51, 0.32) 49%, rgba(247, 183, 51, 0.32) 51%, transparent 52%);
  background-size: 28px 28px, 56px 56px;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.45fr);
  gap: 3rem;
  align-items: center;
  padding: 150px 0 80px;
}

.hero__lead {
  max-width: 680px;
  margin: 26px 0 34px;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions,
.cta-band__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-card {
  position: relative;
  align-self: end;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card__stamp {
  position: absolute;
  top: -14px;
  right: -8px;
  color: rgba(247, 183, 51, 0.2);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.hero-card h2 {
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.hero-card p {
  position: relative;
  display: flex;
  gap: 0.8rem;
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  animation: floatCue 1.6s ease-in-out infinite;
}

@keyframes floatCue {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* Shared image backgrounds */
.parallax-bg {
  position: relative;
  background-image:
    linear-gradient(135deg, rgba(20, 7, 6, 0.74), rgba(143, 17, 17, 0.56)),
    var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Home sections */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 4rem;
  align-items: center;
}

.split__copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(36, 18, 15, 0.76);
  font-size: 1.04rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.mini-stats div {
  padding: 1.15rem;
  border: 1px solid rgba(143, 17, 17, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
}

.mini-stats strong {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.mini-stats span {
  color: rgba(36, 18, 15, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
}

.signature__image {
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(143, 17, 17, 0.18), rgba(247, 183, 51, 0.2));
}

.signature__image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.service-section {
  color: var(--white);
}

.service-section::before,
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 51, 0.26), transparent 34rem),
    linear-gradient(180deg, rgba(20, 7, 6, 0.24), rgba(20, 7, 6, 0.64));
}

.service-section > .container,
.cta-band > .container {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
  transition: transform 320ms ease, border-color 320ms ease;
}

.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 450ms ease, opacity 320ms ease;
}

.service-card::before {
  background: var(--card-bg) center/cover no-repeat;
}

.service-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 7, 6, 0.05), rgba(20, 7, 6, 0.86));
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(247, 183, 51, 0.72);
}

.service-card:hover::before {
  transform: scale(1.08);
}

.service-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: #351600;
  background: var(--gold);
}

.service-card h3 {
  margin-bottom: 0.65rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-strip-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 310px);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 0.4rem 0.2rem 1.2rem;
  scrollbar-width: thin;
}

.strip-item,
.gallery-card {
  position: relative;
  border: 0;
  padding: 0;
  color: var(--white);
  background: var(--dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 7, 6, 0.18);
  scroll-snap-align: start;
}

.strip-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 380ms ease;
}

.strip-item span,
.gallery-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(20, 7, 6, 0.62);
  backdrop-filter: blur(12px);
}

.strip-item::after,
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20, 7, 6, 0.66));
  opacity: 0.9;
  transition: opacity 220ms ease;
}

.strip-item span,
.gallery-card span {
  z-index: 1;
}

.strip-item:hover img,
.gallery-card:hover img {
  transform: scale(1.08);
}

.strip-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(143, 17, 17, 0.26);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: center;
}

.review-carousel {
  position: relative;
}

.review-track {
  display: grid;
}

.review-card {
  grid-area: 1 / 1;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.3rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px) scale(0.98);
  transition: opacity 380ms ease, transform 380ms ease, visibility 380ms ease;
}

.review-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.review-card p {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
}

.review-controls {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.review-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.teaser-card,
.menu-item,
.contact-card,
.faq-item {
  border: 1px solid rgba(143, 17, 17, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.18), transparent 15rem);
  box-shadow: 0 16px 40px rgba(20, 7, 6, 0.08);
}

.teaser-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

.teaser-card__number {
  display: block;
  margin-bottom: 2.3rem;
  color: rgba(143, 17, 17, 0.24);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.7;
}

.teaser-card p {
  color: rgba(36, 18, 15, 0.72);
}

.teaser-card a {
  color: var(--red);
  font-weight: 900;
}

/* CTA */
.cta-band {
  color: var(--white);
  padding: 130px 0;
  text-align: center;
}

.cta-band__inner {
  max-width: 850px;
}

.cta-band h2 {
  margin-bottom: 2rem;
}

.cta-band__actions {
  justify-content: center;
}

/* Page Hero */
.page-hero {
  min-height: 62svh;
  display: grid;
  align-items: end;
  padding: 180px 0 90px;
  color: var(--white);
  overflow: hidden;
}

.page-hero--tall {
  min-height: 100svh;
  align-items: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(247, 183, 51, 0.28), transparent 28rem),
    linear-gradient(90deg, rgba(20, 7, 6, 0.84), rgba(143, 17, 17, 0.56));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

/* Menu */
.menu-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.menu-filters button {
  border: 1px solid rgba(143, 17, 17, 0.18);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--red);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 900;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.menu-filters button:hover,
.menu-filters button.is-active {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.menu-category + .menu-category {
  margin-top: 4rem;
}

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

.menu-category__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.menu-category__header > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #351600;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(247, 183, 51, 0.26);
}

.menu-category__header p {
  margin: 0 0 0.3rem;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.menu-item {
  padding: 1.35rem;
}

.menu-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.menu-item h3 {
  font-size: 1.55rem;
}

.menu-item p {
  margin: 0 0 1rem;
  color: rgba(36, 18, 15, 0.72);
}

.price {
  white-space: nowrap;
  padding: 0.52rem 0.75rem;
  border-radius: 999px;
  color: var(--red);
  background: rgba(247, 183, 51, 0.22);
}

.badge-row,
.allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.badge,
.allergens small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
}

.allergens {
  align-items: center;
  margin: 1rem 0 0;
}

.allergens span {
  color: rgba(36, 18, 15, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
}

.allergens small {
  color: var(--red);
  background: rgba(143, 17, 17, 0.08);
  border: 1px solid rgba(143, 17, 17, 0.12);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 1rem;
}

.gallery-card {
  width: 100%;
  height: 100%;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--white);
  background: rgba(20, 7, 6, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-height: 78vh;
  width: min(980px, 100%);
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 1rem 0 0;
  color: var(--gold);
  font-weight: 900;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.faq-question i {
  color: var(--red);
  transition: transform 220ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.35rem 1.2rem;
  color: rgba(36, 18, 15, 0.72);
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 1.2rem;
}

.contact-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.contact-card--main {
  background:
    linear-gradient(135deg, rgba(143, 17, 17, 0.94), rgba(20, 7, 6, 0.92)),
    url('/images/hero-poster.svg') center/cover;
  color: var(--white);
}

.contact-card--main h2 {
  margin-bottom: 1.5rem;
}

.contact-line {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-line i {
  margin-top: 0.22rem;
  color: var(--gold);
}

.contact-actions {
  margin-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(36, 18, 15, 0.72);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(143, 17, 17, 0.18);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(143, 17, 17, 0.08);
}

.map-section iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: 0;
  filter: saturate(1.04) contrast(1.02);
}

/* Footer */
.footer {
  padding-bottom: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer h2,
.footer h3 {
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer__brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #351600;
  background: var(--gold);
}

.footer__bottom {
  margin-top: 5rem;
  padding: 1.2rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #351600;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(20, 7, 6, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 310px;
  }

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

@media (max-width: 900px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .quick-bar {
    display: none;
  }

  .navbar__inner {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .brand__text small {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 6rem 1.4rem 2rem;
    color: var(--white);
    background:
      radial-gradient(circle at 50% 20%, rgba(247, 183, 51, 0.18), transparent 22rem),
      rgba(143, 17, 17, 0.98);
    transform: translateX(105%);
    transition: transform 280ms ease;
  }

  body.nav-open .nav-menu {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 0.4rem;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .nav-order {
    justify-self: center;
  }

  .hero__content,
  .split,
  .reviews-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    gap: 2rem;
    padding-top: 130px;
  }

  .hero-card {
    align-self: auto;
  }

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

  .menu-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-filters {
    justify-content: flex-start;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 940px;
  }

  .hero__content {
    padding-bottom: 70px;
  }

  .hero__actions,
  .cta-band__actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-strip-wrap {
    grid-template-columns: 1fr;
  }

  .strip-btn {
    display: none;
  }

  .menu-item__top {
    flex-direction: column;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 140px;
  }

  .brand__logo-wrap {
    width: 54px;
    height: 54px;
  }

  .brand__logo {
    width: 46px;
    height: 46px;
  }
}


/* Typography: smaller, cleaner, better CJK rhythm */
:root {
  --font-display: "Noto Serif SC", "Songti SC", "STSong", "Noto Serif", Georgia, serif;
  --font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

/* Global headings */
h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

/* Hero layout refinement */
.hero__content {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero__copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

/* Chinese + Latin title balance */
.hero h1 {
  margin-bottom: 1.35rem;
  max-width: 820px;
  color: #fff7e6;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

/* First line = Chinese characters */
.hero h1::first-line {
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: 0.82em;
  letter-spacing: 0.08em;
  line-height: 1.12;
  font-weight: 800;
}

/* Softer lead text */
.hero__lead {
  max-width: 620px;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.65;
  letter-spacing: 0;
  color: rgba(255, 247, 230, 0.9);
}

/* Eyebrow with subtle Asian seal feeling */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd37a;
}

.eyebrow::before {
  content: "川";
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 211, 122, 0.75);
  border-radius: 0.35rem;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #ffd37a;
  background: rgba(120, 18, 18, 0.42);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}


/* Buttons slightly tighter */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  font-size: 0.92rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
}

/* Mobile tuning */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.65rem);
    letter-spacing: -0.015em;
  }

  h3 {
    font-size: clamp(1.08rem, 5vw, 1.35rem);
  }

  .hero__content {
    min-height: 92svh;
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .hero h1::first-line {
    font-size: 0.86em;
    letter-spacing: 0.06em;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero::after {
    width: 72vw;
    right: -18vw;
    bottom: 4vh;
    opacity: 0.55;
  }

  .hero__actions {
    gap: 0.7rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.25rem, 14vw, 3.55rem);
  }

  .hero h1::first-line {
    letter-spacing: 0.045em;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1.05rem;
  }
}

/* Simple realistic flame hover
   Replace the previous button fire CSS with this.
*/

.btn {
  position: relative;
  isolation: isolate;
  overflow: visible;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

/* Soft heat glow behind the button */
.btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 92%;
  height: 1.4rem;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  z-index: -2;
  transform: translateX(-50%) scale(0.8);
  background: radial-gradient(
    ellipse,
    rgba(255, 92, 22, 0.65) 0%,
    rgba(255, 165, 36, 0.32) 38%,
    transparent 72%
  );
  filter: blur(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Realistic small flames coming from top edge */
.btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.2rem);
  width: 74%;
  height: 1.9rem;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(0.75rem) scaleY(0.45);
  transform-origin: bottom center;
  filter: blur(0.35px) saturate(1.35);

  background:
    radial-gradient(ellipse at 18% 100%, rgba(255, 245, 190, 0.95) 0 9%, rgba(255, 158, 35, 0.9) 20%, transparent 43%),
    radial-gradient(ellipse at 42% 100%, rgba(255, 255, 220, 0.98) 0 10%, rgba(255, 118, 24, 0.95) 24%, transparent 48%),
    radial-gradient(ellipse at 68% 100%, rgba(255, 238, 150, 0.92) 0 8%, rgba(236, 55, 20, 0.9) 23%, transparent 46%),
    radial-gradient(ellipse at 88% 100%, rgba(255, 210, 90, 0.78) 0 7%, rgba(205, 31, 18, 0.75) 22%, transparent 44%);

  clip-path: polygon(
    0% 100%,
    12% 64%,
    22% 100%,
    38% 22%,
    52% 100%,
    66% 38%,
    78% 100%,
    90% 60%,
    100% 100%
  );

  transition: opacity 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 199, 95, 0.95);
  box-shadow:
    0 12px 28px rgba(122, 20, 8, 0.28),
    0 0 26px rgba(255, 114, 24, 0.3);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}


.btn--gold:hover,
.btn--gold:focus-visible {
  background: linear-gradient(135deg, #ffe7a0, #ffb02e 48%, #e13b1d);
  color: #260603;
}

.btn--glass:hover,
.btn--glass:focus-visible {
  background: rgba(132, 24, 16, 0.68);
  color: #fff7e6;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover::after,
  .btn:focus-visible::after {
    animation: none;
    transform: translateX(-50%) translateY(0) scaleY(0.9);
  }
}



/* =========================================================
   One strong full-screen parallax video background
   Applies to all home sections except the hero
========================================================= */

.page-video-parallax {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: var(--dark);
  transition: opacity 320ms ease, visibility 320ms ease;
}

body.show-page-parallax-video .page-video-parallax {
  opacity: 1;
  visibility: visible;
}

.page-video-parallax__media {
  position: absolute;
  left: 0;
  top: -22vh;
  width: 100%;
  height: 144vh;
  object-fit: cover;
  transform:
    translate3d(0, var(--page-parallax-y, 0px), 0)
    scale(var(--page-parallax-scale, 1.16));
  transform-origin: center;
  filter: saturate(1.18) contrast(1.08);
  will-change: transform;
}

/* Global dark cinematic layer */
.page-video-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 183, 51, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 70%, rgba(143, 17, 17, 0.32), transparent 30rem),
    linear-gradient(180deg, rgba(20, 7, 6, 0.42), rgba(20, 7, 6, 0.68));
}

/* Make page content sit above the global video */
main {
  position: relative;
  z-index: 1;
}

/* Every section except hero becomes transparent so the video shows through */
.video-parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent !important;
}

/* Section-specific readable overlay */
.video-parallax-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Cream sections get a warm translucent layer */
.video-parallax-section.section--cream::after,
.video-parallax-section.signature::after,
.video-parallax-section.gallery-strip-section::after,
.video-parallax-section.menu-teaser::after {
  background:
    linear-gradient(
      135deg,
      rgba(255, 244, 223, 0.88),
      rgba(255, 232, 192, 0.72)
    );
}

/* Red/dark sections stay dramatic */
.video-parallax-section.section--red::after,
.video-parallax-section.section--dark::after,
.video-parallax-section.reviews-section::after,
.video-parallax-section.cta-band::after {
  background:
    linear-gradient(
      135deg,
      rgba(20, 7, 6, 0.76),
      rgba(143, 17, 17, 0.7)
    );
}

/* Service section needs a slightly darker overlay */
.video-parallax-section.service-section::after {
  background:
    linear-gradient(
      135deg,
      rgba(20, 7, 6, 0.78),
      rgba(143, 17, 17, 0.58)
    );
}

/* Keep all real section content above the overlay */
.video-parallax-section > * {
  position: relative;
  z-index: 2;
}

/* Disable old image-based parallax background */
.video-parallax-section.parallax-bg {
  background-image: none !important;
  background-attachment: scroll !important;
}

/* Existing pseudo overlays should not cover content incorrectly */
.video-parallax-section.service-section::before,
.video-parallax-section.cta-band::before {
  z-index: 1;
}

/* Chinese character atmosphere */
.video-parallax-section .section-parallax-char {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0.1;
  color: var(--red);
  transform:
    translate3d(0, var(--char-parallax-y, 0px), 0)
    rotate(var(--char-rotate, -8deg));
  will-change: transform;
}

.video-parallax-section.section--red .section-parallax-char,
.video-parallax-section.service-section .section-parallax-char,
.video-parallax-section.cta-band .section-parallax-char {
  color: var(--gold);
  opacity: 0.13;
}

.section-parallax-char--left {
  left: 4vw;
  top: 12%;
}

.section-parallax-char--right {
  right: 5vw;
  bottom: 10%;
  --char-rotate: 10deg;
}

/* Chopsticks detail */
.video-parallax-section .section-chopsticks {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: clamp(130px, 18vw, 260px);
  height: 22px;
  opacity: 0.2;
  transform:
    translate3d(0, var(--chopsticks-parallax-y, 0px), 0)
    rotate(-18deg);
  will-change: transform;
}

.video-parallax-section .section-chopsticks::before,
.video-parallax-section .section-chopsticks::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(84, 32, 12, 0.95),
      rgba(247, 183, 51, 0.95),
      rgba(255, 232, 192, 0.9)
    );
  box-shadow: 0 12px 32px rgba(20, 7, 6, 0.22);
}

.video-parallax-section .section-chopsticks::before {
  top: 0;
}

.video-parallax-section .section-chopsticks::after {
  top: 12px;
  transform: translateX(16px);
}

.section-chopsticks--left {
  left: 6vw;
  bottom: 12%;
}

.section-chopsticks--right {
  right: 7vw;
  top: 16%;
  transform:
    translate3d(0, var(--chopsticks-parallax-y, 0px), 0)
    rotate(20deg);
}

/* Mobile tuning */
@media (max-width: 900px) {
  .page-video-parallax__media {
    top: -18vh;
    height: 136vh;
  }

  .video-parallax-section .section-parallax-char {
    font-size: clamp(4rem, 24vw, 8rem);
    opacity: 0.08;
  }

  .video-parallax-section .section-chopsticks {
    opacity: 0.12;
  }
}

@media (max-width: 620px) {
  .section-parallax-char--right,
  .section-chopsticks--right {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .page-video-parallax__media,
  .video-parallax-section .section-parallax-char,
  .video-parallax-section .section-chopsticks {
    transform: none !important;
  }
}


.credits-link {
  color: #ad8330 !important;
  text-decoration: none;
}

.credits-link i {
  color: #ad8330;
}