:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --gold: #d3b366;
  --gold-soft: #f4e4b7;
  --olive: #58683d;
  --line: rgba(211, 179, 102, 0.28);
}

body.light-mode {
  color-scheme: light;
  --bg: #f7f1df;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --text: #111111;
  --muted: rgba(20, 16, 10, 0.72);
  --gold: #8d6827;
  --gold-soft: #241a0a;
  --olive: #58683d;
  --line: rgba(141, 104, 39, 0.34);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 15%, rgba(211, 179, 102, 0.13), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(88, 104, 61, 0.18), transparent 30rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.light-mode .bg-noir,
body.light-mode .bg-noir {
  background-color: var(--bg) !important;
}

body.light-mode .bg-ink\/70 {
  background-color: #efe4c9 !important;
}

body.light-mode[class*="text-white"],
body.light-mode [class*="text-white"] {
  color: rgba(20, 16, 10, 0.78) !important;
}

body.light-mode [class*="text-champagne"] {
  color: #241a0a !important;
}

body.light-mode .text-gold,
body.light-mode [class*="text-gold"] {
  color: var(--gold) !important;
}

a,
button,
.menu-card,
.category-card,
.best-card,
.feature-card,
.testimonial {
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

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

.loader {
  background:
    linear-gradient(145deg, rgba(211, 179, 102, 0.08), transparent 42%),
    #050505;
}

.no-loader .loader {
  display: none;
}

.brand-mark,
.mini-mark {
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Cinzel, serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 0 50px rgba(211, 179, 102, 0.2);
}

.mini-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.45);
}

.header-solid {
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

body.light-mode .header-solid,
body.light-mode .mini-mark {
  background: rgba(247, 241, 223, 0.82);
}

body.light-mode .header-solid {
  box-shadow: 0 10px 34px rgba(55, 39, 12, 0.12);
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.icon-btn:hover,
.gold-btn:hover,
.glass-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(211, 179, 102, 0.18);
}

#mobileToggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--gold);
  margin: 2px 0;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line);
  transition: max-height 300ms ease;
}

body.light-mode .mobile-menu {
  background: rgba(247, 241, 223, 0.98);
}

.mobile-menu.open {
  max-height: 320px;
}

.mobile-menu a {
  display: block;
  padding: 16px 24px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.gold-btn,
.glass-btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.gold-btn {
  background: linear-gradient(135deg, #f1d98c, #b58b38);
  color: #060606;
}

.glass-btn {
  border: 1px solid var(--line);
  color: var(--gold-soft);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.76)),
    url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1800&q=78") center/cover;
}

body.light-mode .hero {
  background:
    linear-gradient(90deg, rgba(247, 241, 223, 0.98), rgba(247, 241, 223, 0.84)),
    url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1800&q=78") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, var(--bg));
}

body.light-mode .hero::after,
body.light-mode .menu-hero::after {
  background: linear-gradient(to bottom, transparent 58%, var(--bg));
}

.hero-plate {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.hero-plate img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.hero-collage {
  position: relative;
  z-index: 1;
  min-height: min(680px, 76vh);
}

.hero-collage-main,
.hero-collage-float {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-collage-main {
  inset: 4% 4% 8% 13%;
  width: 78%;
  height: 84%;
}

.hero-collage-float {
  z-index: 2;
}

.hero-collage-a {
  left: 0;
  bottom: 10%;
  width: 38%;
  height: 31%;
}

.hero-collage-b {
  right: 0;
  top: 8%;
  width: 34%;
  height: 28%;
}

.ornament {
  position: absolute;
  border: 1px solid var(--line);
  pointer-events: none;
}

.ornament-one {
  inset: 28px 28px auto auto;
  width: 34vw;
  height: 34vw;
  border-left: 0;
  border-bottom: 0;
}

.ornament-two {
  left: 28px;
  bottom: 28px;
  width: 22vw;
  height: 22vw;
  border-right: 0;
  border-top: 0;
}

.floating-food {
  position: absolute;
  z-index: 1;
  font-size: clamp(1.6rem, 4vw, 3rem);
  opacity: 0.72;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.stat-card,
.glass-panel,
.category-card,
.menu-card,
.best-card,
.feature-card,
.testimonial,
.contact-grid a {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

body.light-mode .stat-card,
body.light-mode .glass-panel,
body.light-mode .category-card,
body.light-mode .menu-card,
body.light-mode .best-card,
body.light-mode .feature-card,
body.light-mode .testimonial,
body.light-mode .contact-grid a,
body.light-mode .mini-feature,
body.light-mode .menu-group {
  box-shadow: 0 18px 54px rgba(64, 45, 12, 0.1);
}

.stat-card {
  border-radius: 8px;
  padding: 16px;
}

.stat-card span {
  display: block;
  font-family: Cinzel, serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
}

.stat-card small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-pad {
  padding: clamp(76px, 9vw, 128px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  max-width: 760px;
  color: var(--gold-soft);
  font-family: Cinzel, serif;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.05;
}

.lux-copy {
  border-left: 1px solid var(--line);
  padding-left: 22px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.editorial-section,
.experience-section,
.signature-section {
  position: relative;
  overflow: hidden;
}

.experience-image {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.experience-image:hover img {
  transform: scale(1.045);
}

.mini-feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.mini-feature span {
  color: var(--gold);
  font-family: Cinzel, serif;
  font-weight: 800;
}

.mini-feature strong {
  display: block;
  margin-top: 16px;
  color: var(--gold-soft);
  font-family: Cinzel, serif;
  font-size: 1.15rem;
}

.mini-feature p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.featured-menu-grid {
  display: grid;
  gap: 22px;
}

.featured-menu-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.featured-menu-image {
  min-height: 230px;
  overflow: hidden;
}

.featured-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.featured-menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(211, 179, 102, 0.62);
}

.featured-menu-card:hover img {
  transform: scale(1.06);
}

.featured-menu-content {
  padding: 24px;
}

.featured-menu-content > span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.featured-menu-content h3 {
  margin-top: 12px;
  color: var(--gold-soft);
  font-family: Cinzel, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.featured-menu-content p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.menu-hero {
  min-height: 78vh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.68)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.menu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 62%, var(--bg));
}

.menu-hero > div {
  position: relative;
  z-index: 1;
}

.menu-hero-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.menu-hero-image img {
  width: 100%;
  height: min(560px, 62vh);
  object-fit: cover;
}

.category-card,
.best-card,
.feature-card,
.testimonial,
.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.category-card {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(211, 179, 102, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.category-card::after,
.best-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(211, 179, 102, 0.1);
}

.category-card:hover,
.menu-card:hover,
.best-card:hover,
.feature-card:hover,
.testimonial:hover,
.contact-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(211, 179, 102, 0.65);
  background: var(--panel-strong);
}

.category-card span {
  display: block;
  margin-bottom: 20px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(211, 179, 102, 0.1);
  font-size: 1.75rem;
}

.category-card h3,
.best-card h3,
.feature-card h3,
.menu-card h3 {
  color: var(--gold-soft);
  font-family: Cinzel, serif;
}

.menu-toolbar {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.menu-section {
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 90px 4vw auto auto;
  width: min(420px, 72vw);
  height: min(420px, 72vw);
  border: 1px solid rgba(211, 179, 102, 0.14);
  border-radius: 50%;
  opacity: 0.65;
  pointer-events: none;
}

.menu-section::after {
  content: "PJS";
  position: absolute;
  right: 5vw;
  top: 180px;
  color: rgba(211, 179, 102, 0.045);
  font-family: Cinzel, serif;
  font-size: clamp(8rem, 18vw, 20rem);
  line-height: 1;
  pointer-events: none;
}

.menu-toolbar input,
.menu-toolbar select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

body.light-mode .menu-toolbar input,
body.light-mode .menu-toolbar select {
  background: rgba(255, 255, 255, 0.86);
  color: #17110a;
}

body.light-mode .menu-toolbar input::placeholder {
  color: rgba(20, 16, 10, 0.5);
}

.category-tabs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: thin;
}

.category-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.category-tabs button.active {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 10px 30px rgba(211, 179, 102, 0.22);
}

.menu-list {
  display: grid;
  gap: 22px;
}

.menu-group {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(211, 179, 102, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.menu-group::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(211, 179, 102, 0.16);
  border-radius: 6px;
  pointer-events: none;
  z-index: 0;
}

.menu-group-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(211, 179, 102, 0.14), rgba(5, 5, 5, 0.8));
  padding: 28px 32px;
  backdrop-filter: blur(18px);
}

body.light-mode .menu-group-head {
  background: linear-gradient(90deg, rgba(141, 104, 39, 0.16), rgba(255, 255, 255, 0.82));
}

.menu-group-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.menu-group-head h3 {
  color: var(--gold-soft);
  font-family: Cinzel, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.menu-group-head strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: Cinzel, serif;
}

.menu-group-body {
  position: relative;
  z-index: 1;
  padding: 18px 24px 24px;
}

.menu-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(42px, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(211, 179, 102, 0.12);
  border-radius: 0;
  padding: 15px 8px;
  background: transparent;
  backdrop-filter: none;
}

.menu-card:last-child {
  border-bottom: 0;
}

.menu-card:hover {
  transform: translateX(4px);
  background: linear-gradient(90deg, rgba(211, 179, 102, 0.09), transparent);
}

.menu-item-copy h4 {
  color: var(--gold-soft);
  font-family: Cinzel, serif;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.25;
}

.menu-item-copy p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.menu-leader {
  height: 1px;
  min-width: 28px;
  background-image: linear-gradient(to right, rgba(211, 179, 102, 0.18) 38%, transparent 0%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

.menu-price {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  min-width: 136px;
}

.menu-price span {
  display: grid;
  gap: 2px;
  min-width: 72px;
  border: 1px solid rgba(211, 179, 102, 0.18);
  border-radius: 6px;
  background: rgba(211, 179, 102, 0.1);
  padding: 7px 9px;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

body.light-mode .menu-price span {
  background: rgba(141, 104, 39, 0.11);
  border-color: rgba(141, 104, 39, 0.28);
}

body.light-mode .gold-btn {
  color: #120d05 !important;
}

body.light-mode .glass-btn {
  background: rgba(255, 255, 255, 0.74);
  color: #241a0a !important;
}

.menu-price small {
  display: block;
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.best-card,
.feature-card,
.testimonial {
  padding: 26px;
}

.best-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.best-card span,
.feature-card span {
  color: var(--gold);
  font-size: 2rem;
}

.masonry {
  columns: 1;
  column-gap: 18px;
}

.masonry img {
  width: 100%;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  break-inside: avoid;
  filter: saturate(0.96) contrast(1.04);
}

.testimonial p {
  min-height: 132px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.testimonial strong {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  padding: 18px;
  color: var(--gold-soft);
  font-weight: 800;
}

.contact-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

body.light-mode footer {
  background: #efe4c9 !important;
  border-color: rgba(141, 104, 39, 0.28) !important;
}

body.light-mode footer a,
body.light-mode nav a,
body.light-mode .mobile-menu a {
  color: rgba(36, 26, 10, 0.78) !important;
}

body.light-mode footer a:hover,
body.light-mode nav a:hover,
body.light-mode .mobile-menu a:hover {
  color: var(--gold) !important;
}

body.light-mode .back-top {
  background: rgba(255, 255, 255, 0.86);
}

.floating-whatsapp,
.floating-order,
.back-top {
  position: fixed;
  z-index: 45;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp {
  right: 18px;
  bottom: 88px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-order {
  right: 18px;
  bottom: 150px;
  min-height: 44px;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  padding: 0 16px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.back-top {
  right: 18px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 640px) {
  .menu-toolbar {
    grid-template-columns: 1fr 280px;
  }

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

  .masonry {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .featured-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .masonry {
    columns: 3;
  }
}

@media (max-width: 767px) {
  .hero-collage {
    min-height: 440px;
  }

  .hero-collage-main {
    inset: 6% 0 12% 8%;
    width: 84%;
  }

  .hero-collage-a {
    width: 42%;
    height: 28%;
  }

  .hero-collage-b {
    width: 40%;
    height: 25%;
  }

  .experience-image {
    min-height: 360px;
  }

  .featured-menu-image {
    min-height: 210px;
  }

  .menu-group-head {
    position: relative;
    top: auto;
    padding: 20px;
  }

  .menu-group-head strong {
    width: 40px;
    height: 40px;
  }

  .menu-group-body {
    padding: 8px 14px 14px;
  }

  .menu-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 4px;
  }

  .menu-card:hover {
    transform: translateY(-2px);
  }

  .menu-leader {
    display: none;
  }

  .menu-price {
    justify-content: flex-start;
    min-width: 0;
  }

  .hero-plate img {
    max-height: 430px;
  }

  .ornament {
    opacity: 0.45;
  }

  .floating-order {
    display: none;
  }

  .contact-grid a {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid span {
    text-align: left;
  }
}
