:root {
  --leather: #1b271d;
  --leather-2: #243224;
  --olive: #3a4a35;
  --camel: #c8985e;
  --gold: #e0a53d;
  --gold-soft: #f0d49a;
  --ember: #a5301f;
  --ember-bright: #c8412a;
  --cream: #f3e9d6;
  --cream-dim: #cdbfa6;
  --ink: #0e150f;
  --line: rgba(224, 165, 61, 0.22);
  --shadow-deep: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  --f-display: "Reem Kufi", "Cairo", sans-serif;
  --f-serif: "Amiri", serif;
  --f-body: "Cairo", sans-serif;
  --f-num: "Cormorant Garamond", serif;
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  background: var(--leather);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(58, 74, 53, 0.35), transparent 45%),
    radial-gradient(
      circle at 85% 80%,
      rgba(165, 48, 31, 0.12),
      transparent 40%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 46px);
}
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 46px);
  transition:
    background 0.4s var(--ease),
    padding 0.4s var(--ease),
    border-color 0.4s;
  border-block-end: 1px solid transparent;
}
.nav.solid {
  background: rgba(20, 28, 21, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-block-end-color: var(--line);
  padding-block: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .seal {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: radial-gradient(circle at 50% 35%, #2c3a2b, #161f17);
  border: 1.5px solid var(--gold);
  box-shadow:
    inset 0 0 14px rgba(224, 165, 61, 0.25),
    0 4px 14px rgba(0, 0, 0, 0.5);
}
.brand .seal svg {
  width: 30px;
  height: 30px;
}
.brand .name {
  line-height: 1.15;
}
.brand .name b {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--gold-soft);
  letter-spacing: 0.5px;
  display: block;
}
.brand .name span {
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset-block-end: -6px;
  inset-inline-start: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover {
  color: var(--cream);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  font-family: var(--f-display);
  font-weight: 600;
  background: linear-gradient(180deg, var(--gold), #c98a26);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.92rem;
  box-shadow: 0 6px 20px -6px rgba(224, 165, 61, 0.6);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(224, 165, 61, 0.75);
}
.burger {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--gold-soft);
  transition: 0.3s;
}
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: linear-gradient(160deg, #1c281d, #10160f);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-inline-start: 1px solid var(--line);
    padding: 40px;
    z-index: 55;
  }
  html[dir="rtl"] .nav-links {
    transform: translateX(-100%);
  }
  .nav-links.open {
    transform: translateX(0) !important;
  }
  .nav-links a {
    font-size: 1.15rem;
  }
  .burger {
    display: flex;
    z-index: 60;
  }
  .burger.x span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.x span:nth-child(2) {
    opacity: 0;
  }
  .burger.x span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      120% 90% at 70% 30%,
      rgba(224, 165, 61, 0.1),
      transparent 50%
    ),
    linear-gradient(
      180deg,
      rgba(14, 21, 15, 0.55) 0,
      rgba(14, 21, 15, 0.4) 35%,
      rgba(14, 21, 15, 0.92) 88%
    ),
    linear-gradient(90deg, rgba(14, 21, 15, 0.7), rgba(14, 21, 15, 0.15));
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
.embers {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ember {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), rgba(224, 165, 61, 0));
  filter: blur(0.4px);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% {
    transform: translateY(20px) scale(0.6);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-90vh) scale(1.1);
    opacity: 0;
  }
}
.hero-inner {
  position: relative;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-block-end: 24px;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-soft);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: up 0.9s var(--ease) 0.2s forwards;
}
.hero-eyebrow .rule {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3.1rem, 11vw, 8.6rem);
  line-height: 0.94;
  color: var(--cream);
  letter-spacing: -1px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  margin-block-end: 10px;
}
.hero h1 .gold {
  background: linear-gradient(
    180deg,
    var(--gold-soft) 10%,
    var(--gold) 55%,
    #b07e22 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(224, 165, 61, 0.35));
}
.hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: up 1s var(--ease) forwards;
}
.hero h1 span:first-child {
  animation-delay: 0.35s;
}
.hero h1 span:nth-child(2) {
  animation-delay: 0.5s;
}
.hero-sub {
  max-width: 540px;
  color: var(--cream-dim);
  font-size: clamp(1.02rem, 2.4vw, 1.28rem);
  margin-block: 22px 38px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: up 1s var(--ease) 0.75s forwards;
}
.hero-sub b {
  color: var(--gold-soft);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: up 1s var(--ease) 0.9s forwards;
}
.btn {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 16px 34px;
  border-radius: 46px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    background 0.35s;
}
.btn svg {
  width: 19px;
  height: 19px;
}
.btn-primary {
  background: linear-gradient(180deg, var(--ember-bright), var(--ember));
  color: #fff;
  box-shadow:
    0 14px 34px -10px rgba(165, 48, 31, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 44px -12px rgba(200, 65, 42, 0.9);
}
.btn-ghost {
  background: rgba(243, 233, 214, 0.06);
  color: var(--cream);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(224, 165, 61, 0.1);
}
.hero-scroll {
  position: absolute;
  inset-block-end: 26px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: up 1s ease 1.4s forwards;
}
.hero-scroll .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--cream-dim);
  border-radius: 14px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: "";
  position: absolute;
  inset-block-start: 7px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--gold);
  animation: wheel 1.6s infinite;
}
@keyframes wheel {
  0% {
    opacity: 1;
    top: 7px;
  }
  70% {
    opacity: 0;
    top: 18px;
  }
  100% {
    opacity: 0;
  }
}
@keyframes up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-block-start: 42px;
  opacity: 0;
  transform: translateY(20px);
  animation: up 1s var(--ease) 1.05s forwards;
}
.hero-badges .b {
  display: flex;
  flex-direction: column;
}
.hero-badges .b b {
  font-family: var(--f-num);
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
}
.hero-badges .b span {
  font-size: 0.76rem;
  color: var(--cream-dim);
  letter-spacing: 1px;
}
.hero-badges .sep {
  width: 1px;
  background: var(--line);
}
.section {
  padding-block: clamp(72px, 11vw, 140px);
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-block-end: 18px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember-bright);
  box-shadow: 0 0 12px var(--ember-bright);
}
.s-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.5vw, 3.9rem);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.5px;
  margin-block-end: 18px;
}
.s-title .gold {
  color: var(--gold);
}
.s-lead {
  max-width: 600px;
  color: var(--cream-dim);
  font-size: 1.08rem;
  font-weight: 300;
}
.s-head {
  margin-block-end: 54px;
}
.center {
  text-align: center;
}
.center .eyebrow,
.center .s-lead {
  margin-inline: auto;
}
.center .s-lead {
  margin-block-start: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.08s;
}
.reveal[data-d="2"] {
  transition-delay: 0.16s;
}
.reveal[data-d="3"] {
  transition-delay: 0.24s;
}
.reveal[data-d="4"] {
  transition-delay: 0.32s;
}
.sig-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px;
}
.dish {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid rgba(224, 165, 61, 0.14);
  box-shadow: var(--shadow-deep);
  background: #11160f;
}
.dish.feat-xl {
  grid-column: span 4;
  grid-row: span 2;
}
.dish.feat-tall {
  grid-column: span 2;
  grid-row: span 2;
}
.dish.feat-wide {
  grid-column: span 3;
}
.dish.feat-sm {
  grid-column: span 2;
}
.dish.feat-3 {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .sig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .dish.feat-xl {
    grid-column: span 2;
    grid-row: span 2;
  }
  .dish.feat-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .dish.feat-3,
  .dish.feat-sm,
  .dish.feat-wide {
    grid-column: span 1;
  }
}
@media (max-width: 560px) {
  .sig-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .dish.feat-3,
  .dish.feat-sm,
  .dish.feat-tall,
  .dish.feat-wide,
  .dish.feat-xl {
    grid-column: span 1;
    grid-row: span 1;
  }
  .dish.feat-xl {
    grid-row: span 1;
  }
}
.dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.1s var(--ease),
    filter 1.1s var(--ease);
  transform: scale(1.03);
}
.dish:hover img {
  transform: scale(1.13);
  filter: saturate(1.12) brightness(1.04);
}
.dish .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 15, 9, 0.92) 0,
    rgba(10, 15, 9, 0.35) 45%,
    transparent 75%
  );
  transition: opacity 0.5s;
}
.dish .pop {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.74rem;
  background: linear-gradient(180deg, var(--ember-bright), var(--ember));
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px -4px rgba(165, 48, 31, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dish .pop svg {
  width: 13px;
  height: 13px;
}
.dish .info {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: 22px;
  transform: translateY(8px);
  transition: transform 0.5s var(--ease);
}
.dish:hover .info {
  transform: translateY(0);
}
.dish .info h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--cream);
  line-height: 1.2;
}
.dish .info .desc {
  color: var(--cream-dim);
  font-size: 0.9rem;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s var(--ease),
    opacity 0.5s,
    margin 0.5s;
}
.dish:hover .info .desc {
  max-height: 60px;
  opacity: 1;
  margin-block-start: 6px;
}
.dish .price {
  position: absolute;
  inset-block-end: 22px;
  inset-inline-end: 22px;
  font-family: var(--f-num);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold-soft);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.dish .price small {
  font-size: 0.7rem;
  color: var(--cream-dim);
  font-family: var(--f-body);
}
.dish.feat-xl .info h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.dish.feat-xl .price {
  font-size: 2rem;
}
.steam {
  position: absolute;
  inset-block-end: 60%;
  inset-inline-start: 30%;
  width: 60px;
  height: 80px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
}
.dish:hover .steam {
  opacity: 0.5;
}
.steam span {
  position: absolute;
  inset-block-end: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(4px);
  animation: steam 3s infinite ease-in;
}
.steam span:nth-child(2) {
  inset-inline-start: 16px;
  animation-delay: 1s;
}
.steam span:nth-child(3) {
  inset-inline-start: 30px;
  animation-delay: 2s;
}
@keyframes steam {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-70px) scale(2.4);
    opacity: 0;
  }
}
.menu-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(36, 50, 36, 0.5) 12%,
    rgba(36, 50, 36, 0.5) 88%,
    transparent
  );
  position: relative;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-block-end: 44px;
}
.filter {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 34px;
  cursor: pointer;
  background: rgba(243, 233, 214, 0.04);
  color: var(--cream-dim);
  border: 1px solid var(--line);
  transition: 0.32s var(--ease);
}
.filter:hover {
  color: var(--cream);
  border-color: var(--camel);
}
.filter.active {
  background: linear-gradient(180deg, var(--gold), #c98a26);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 8px 22px -8px rgba(224, 165, 61, 0.6);
}
.menu-section .spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
  mix-blend-mode: soft-light;
  background: radial-gradient(
    380px circle at var(--mx, 50%) var(--my, 40%),
    rgba(224, 165, 61, 0.5),
    transparent 65%
  );
}
.menu-section:hover .spotlight {
  opacity: 1;
}
.spices {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.spice {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, var(--gold-soft), transparent);
  animation: drift linear infinite;
}
@keyframes drift {
  0% {
    transform: translateY(40px) translateX(0) scale(0.5);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(40px) scale(1);
    opacity: 0;
  }
}
.menu-section .wrap {
  position: relative;
  z-index: 1;
}
.menu-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(330px, auto);
  grid-auto-flow: dense;
}
.m-card.span2 {
  grid-column: span 2;
}
.m-card.tall {
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .m-card.span2 {
    grid-column: span 2;
  }
  .m-card.tall {
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(360px, auto);
  }
  .m-card.span2,
  .m-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.m-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(20, 28, 21, 0.5);
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
  box-shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  will-change: transform;
}
.m-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  z-index: 3;
  background: linear-gradient(
    135deg,
    rgba(224, 165, 61, 0.55),
    rgba(224, 165, 61, 0.05) 40%,
    rgba(165, 48, 31, 0.4)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.m-card:hover {
  transform: translateY(-12px);
}
.m-card:hover::before {
  opacity: 1;
}
.m-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: 0;
  box-shadow: 0 0 0 0 rgba(224, 165, 61, 0);
  transition: box-shadow 0.55s;
}
.m-card:hover::after {
  box-shadow: 0 24px 70px -20px rgba(224, 165, 61, 0.5);
}
.m-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
}
.m-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation:
    imgIn 1.4s var(--ease) forwards,
    floatImg 9s ease-in-out infinite 1.4s;
  transition:
    transform 0.7s var(--ease),
    filter 0.7s;
  will-change: transform;
}
@keyframes imgIn {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1.04);
  }
}
@keyframes floatImg {
  0%,
  100% {
    transform: scale(1.04) translateY(0);
  }
  50% {
    transform: scale(1.06) translateY(-10px);
  }
}
.m-card:hover .m-photo img {
  transform: scale(1.12) !important;
  filter: saturate(1.12) brightness(1.05);
  animation-play-state: paused;
}
.m-photo .light {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      120% 80% at 70% 12%,
      rgba(255, 240, 205, 0.18),
      transparent 50%
    ),
    linear-gradient(
      0deg,
      rgba(10, 15, 9, 0.95) 4%,
      rgba(10, 15, 9, 0.45) 38%,
      rgba(10, 15, 9, 0.05) 62%,
      rgba(10, 15, 9, 0.25) 100%
    );
}
.m-photo .shine {
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 250, 235, 0.45),
    transparent
  );
  transform: rotate(8deg);
  opacity: 0;
}
.m-card:hover .m-photo .shine {
  animation: sweep 1.1s var(--ease);
}
@keyframes sweep {
  0% {
    left: -80%;
    opacity: 0;
  }
  25% {
    opacity: 0.9;
  }
  100% {
    left: 160%;
    opacity: 0;
  }
}
.m-steam {
  position: absolute;
  top: 14%;
  inset-inline-start: 24%;
  z-index: 2;
  width: 70px;
  height: 90px;
  pointer-events: none;
  opacity: 0.55;
}
.m-steam span {
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(5px);
  animation: steam2 4s infinite ease-in;
}
.m-steam span:nth-child(2) {
  inset-inline-start: 20px;
  animation-delay: 1.3s;
}
.m-steam span:nth-child(3) {
  inset-inline-start: 40px;
  animation-delay: 2.6s;
}
@keyframes steam2 {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-80px) scale(2.6);
    opacity: 0;
  }
}
.m-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 4;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  background: linear-gradient(180deg, var(--ember-bright), var(--ember));
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px -4px rgba(165, 48, 31, 0.7);
}
.m-badge svg {
  width: 12px;
  height: 12px;
}
.m-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 4;
  padding: 22px 22px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.m-text {
  min-width: 0;
}
.m-text h4 {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.m-card.span2 .m-text h4 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}
.m-text p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-weight: 300;
  margin-block-start: 4px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease),
    opacity 0.5s,
    margin 0.5s;
}
.m-card:hover .m-text p {
  max-height: 54px;
  opacity: 1;
  margin-block-start: 6px;
}
.m-price {
  flex: none;
  text-align: end;
  font-family: var(--f-num);
  font-weight: 600;
  color: var(--gold-soft);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 0.9;
  transform: translateY(6px) scale(0.92);
  opacity: 0.85;
  transition:
    transform 0.5s var(--ease),
    opacity 0.5s;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}
.m-card:hover .m-price {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.m-price small {
  display: block;
  font-size: 0.58rem;
  color: var(--cream-dim);
  font-family: var(--f-body);
  letter-spacing: 1.5px;
  font-weight: 400;
}
.m-order {
  position: absolute;
  inset-inline: 22px;
  bottom: -60px;
  z-index: 5;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, var(--ember-bright), var(--ember));
  box-shadow: 0 10px 26px -8px rgba(165, 48, 31, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition:
    bottom 0.5s var(--ease),
    opacity 0.5s;
}
.m-order svg {
  width: 16px;
  height: 16px;
}
.m-card:hover .m-order {
  bottom: 20px;
  opacity: 1;
}
.m-card:hover .m-content {
  transform: translateY(-52px);
  transition: transform 0.5s var(--ease);
}
.m-content {
  transition: transform 0.5s var(--ease);
}
@media (hover: none) {
  .m-text p {
    max-height: 54px;
    opacity: 1;
    margin-block-start: 6px;
  }
  .m-order {
    position: absolute;
    inset-inline: 16px;
    bottom: 16px;
    opacity: 1;
    margin: 0;
    z-index: 8;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .m-content {
    bottom: 72px;
    flex-direction: column;
    align-items: stretch;
  }
  .m-card:hover .m-content {
    transform: none;
  }
  .m-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }
}
.menu-note {
  text-align: center;
  margin-block-start: 44px;
  color: var(--cream-dim);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.menu-note a {
  color: var(--gold);
  border-block-end: 1px solid var(--line);
}
.menu-grid {
  perspective: 1400px;
}
.m-card {
  transform-style: preserve-3d;
}
.m-reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
}
.m-reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.gallery {
  columns: 4 240px;
  column-gap: 16px;
}
.g-item {
  break-inside: avoid;
  margin-block-end: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(224, 165, 61, 0.12);
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.7);
}
.g-item img {
  width: 100%;
  transition:
    transform 1s var(--ease),
    filter 0.6s;
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(165, 48, 31, 0), transparent);
  transition: background 0.5s;
}
.g-item:hover img {
  transform: scale(1.08);
}
.g-item:hover::after {
  background: linear-gradient(0deg, rgba(20, 28, 21, 0.6), transparent 60%);
}
.g-item .zoom {
  position: absolute;
  inset-block-end: 14px;
  inset-inline-end: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224, 165, 61, 0.92);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.6);
  transition: 0.4s var(--ease);
}
.g-item .zoom svg {
  width: 18px;
  height: 18px;
  color: var(--ink);
}
.g-item:hover .zoom {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 600px) {
  .gallery {
    columns: 2 150px;
    column-gap: 12px;
  }
  .g-item {
    margin-block-end: 12px;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 12, 8, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
  animation: fade 0.3s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--line);
}
.lb-close {
  position: absolute;
  inset-block-start: 24px;
  inset-inline-end: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(243, 233, 214, 0.1);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.lb-close:hover {
  background: var(--ember);
  border-color: var(--ember);
}
.lb-nav {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(243, 233, 214, 0.08);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.lb-nav:hover {
  background: var(--gold);
  color: var(--ink);
}
.lb-prev {
  inset-inline-start: 24px;
}
.lb-next {
  inset-inline-end: 24px;
}
@media (max-width: 600px) {
  .lb-nav {
    width: 42px;
    height: 42px;
  }
}
.testi-section {
  position: relative;
  overflow: hidden;
}
.testi-wrap {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  min-height: 300px;
}
.testi {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  text-align: center;
  padding: 46px 30px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(36, 50, 36, 0.6),
    rgba(27, 39, 29, 0.6)
  );
  border: 1px solid var(--line);
  border-radius: 26px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-deep);
}
.testi.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.testi .quote-mark {
  font-family: var(--f-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  height: 34px;
  opacity: 0.6;
}
.testi .stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-block: 16px 20px;
  color: var(--gold);
}
.testi .stars svg {
  width: 22px;
  height: 22px;
}
.testi p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--cream);
  line-height: 1.6;
  max-width: 640px;
  margin-inline: auto;
}
.testi .who {
  margin-block-start: 26px;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--gold-soft);
  font-size: 1.05rem;
}
.testi .who span {
  display: block;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--cream-dim);
}
.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-block-start: 34px;
}
.testi-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}
.testi-dots button.on {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.why-card {
  padding: 36px 28px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(243, 233, 214, 0.045),
    rgba(243, 233, 214, 0.015)
  );
  border: 1px solid rgba(224, 165, 61, 0.14);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--camel);
}
.why-card .ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-block-end: 22px;
  background: radial-gradient(circle at 40% 30%, #33422f, #1a241b);
  border: 1px solid var(--line);
  color: var(--gold);
}
.why-card .ic svg {
  width: 32px;
  height: 32px;
}
.why-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  margin-block-end: 10px;
}
.why-card p {
  color: var(--cream-dim);
  font-size: 0.96rem;
  font-weight: 300;
}
.why-card .num {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-end: 22px;
  font-family: var(--f-num);
  font-size: 2.4rem;
  color: rgba(224, 165, 61, 0.14);
  font-weight: 600;
}
.final {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.final-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 90% at 30% 50%, rgba(14, 21, 15, 0.5), transparent),
    linear-gradient(
      90deg,
      rgba(14, 21, 15, 0.94) 0,
      rgba(14, 21, 15, 0.78) 40%,
      rgba(14, 21, 15, 0.5) 100%
    );
}
html[dir="rtl"] .final::after {
  background:
    radial-gradient(90% 90% at 70% 50%, rgba(14, 21, 15, 0.5), transparent),
    linear-gradient(
      270deg,
      rgba(14, 21, 15, 0.94) 0,
      rgba(14, 21, 15, 0.78) 40%,
      rgba(14, 21, 15, 0.5) 100%
    );
}
.final-inner {
  max-width: 620px;
}
.final h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  color: var(--cream);
  margin-block-end: 20px;
}
.final h2 .gold {
  color: var(--gold);
}
.final p {
  color: var(--cream-dim);
  font-size: 1.15rem;
  font-weight: 300;
  margin-block-end: 36px;
  max-width: 480px;
}
.final-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer {
  padding-block: 64px 30px;
  border-block-start: 1px solid var(--line);
  background: #11180f;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-block-end: 46px;
}
@media (max-width: 760px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.foot-brand .brand {
  margin-block-end: 18px;
}
.foot-brand p {
  color: var(--cream-dim);
  font-weight: 300;
  max-width: 340px;
}
.foot-col h4 {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--gold-soft);
  margin-block-end: 18px;
  font-size: 1.05rem;
}
.foot-col a,
.foot-col p {
  display: block;
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-block-end: 10px;
  font-weight: 300;
  transition: color 0.3s;
}
.foot-col a:hover {
  color: var(--gold);
}
.foot-col .hot {
  font-family: var(--f-num);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-block-start: 16px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(243, 233, 214, 0.05);
  border: 1px solid var(--line);
  transition: 0.3s;
}
.socials a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.socials svg {
  width: 19px;
  height: 19px;
}
.foot-base {
  text-align: center;
  padding-block-start: 26px;
  border-block-start: 1px solid rgba(224, 165, 61, 0.1);
  color: var(--cream-dim);
  font-size: 0.84rem;
  font-weight: 300;
}
.btn-wa {
  background: linear-gradient(180deg, #2bd66a, #1faa52);
  color: #fff;
  box-shadow:
    0 14px 34px -10px rgba(37, 180, 99, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 44px -12px rgba(37, 180, 99, 0.85);
}
.sticky-bar {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(
    180deg,
    rgba(20, 28, 21, 0.4),
    rgba(14, 21, 15, 0.96)
  );
  backdrop-filter: blur(12px);
  border-block-start: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
}
.sticky-bar.show {
  transform: translateY(0);
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  border-radius: 15px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition:
    transform 0.25s var(--ease),
    filter 0.25s;
}
.sticky-bar a svg {
  width: 21px;
  height: 21px;
}
.sticky-bar a:active {
  transform: scale(0.96);
}
.sticky-call {
  background: linear-gradient(180deg, var(--ember-bright), var(--ember));
  box-shadow: 0 8px 22px -8px rgba(165, 48, 31, 0.8);
}
.sticky-wa {
  background: linear-gradient(180deg, #2bd66a, #1faa52);
  box-shadow: 0 8px 22px -8px rgba(37, 180, 99, 0.8);
}
@media (max-width: 880px) {
  .sticky-bar {
    display: flex;
  }
}
.wa-fab {
  position: fixed;
  z-index: 55;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2bd66a, #1faa52);
  color: #fff;
  box-shadow: 0 12px 30px -6px rgba(37, 180, 99, 0.7);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.wa-fab svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}
.wa-fab:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 38px -8px rgba(37, 180, 99, 0.85);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2bd66a;
  z-index: 1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100%,
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (max-width: 880px) {
  .wa-fab {
    inset-block-end: 88px;
    width: 52px;
    height: 52px;
  }
  .wa-fab svg {
    width: 26px;
    height: 26px;
  }
}
.foot-call,
.foot-map,
.foot-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 18px;
  border-radius: 12px;
  margin-block-end: 12px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    border-color 0.3s;
}
.foot-call svg,
.foot-map svg,
.foot-wa svg {
  width: 19px;
  height: 19px;
  flex: none;
}
.foot-call {
  background: linear-gradient(180deg, var(--ember-bright), var(--ember));
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(165, 48, 31, 0.7);
}
.foot-call:hover {
  transform: translateY(-2px);
}
.foot-wa {
  background: linear-gradient(180deg, #2bd66a, #1faa52);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37, 180, 99, 0.7);
}
.foot-wa:hover {
  transform: translateY(-2px);
}
.foot-map {
  background: rgba(243, 233, 214, 0.05);
  color: var(--cream);
  border: 1px solid var(--line);
}
.foot-map:hover {
  transform: translateY(-2px);
  border-color: var(--camel);
  background: rgba(224, 165, 61, 0.1);
}
.foot-col a.foot-call,
.foot-col a.foot-map,
.foot-col a.foot-wa {
  display: inline-flex;
}
.m-add {
  background: linear-gradient(180deg, var(--gold, #e0a53d), #c78d29);
  color: #1b271d;
  font-family: var(--f-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.98rem;
  box-shadow: 0 8px 20px -8px rgba(224, 165, 61, 0.6);
  transition:
    transform 0.25s var(--ease),
    filter 0.25s,
    box-shadow 0.25s;
}
.m-add:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px -8px rgba(224, 165, 61, 0.75);
}
.m-add:active {
  transform: scale(0.97);
}
.m-add.added {
  background: linear-gradient(180deg, #2bd66a, #1faa52);
  color: #fff;
}
.m-add.added .m-add-label::before {
  content: "✓ ";
}
.cart-fab {
  position: fixed;
  z-index: 56;
  inset-block-end: 24px;
  inset-inline-end: 96px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, var(--gold, #e0a53d), #b8801f);
  color: #1b271d;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -6px rgba(224, 165, 61, 0.7);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6) translateY(20px);
}
.cart-fab.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
.cart-fab:hover {
  transform: translateY(-4px) scale(1.06);
}
.cart-fab svg {
  width: 28px;
  height: 28px;
}
.cart-count {
  position: absolute;
  top: -4px;
  inset-inline-start: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--ember, #a5301f);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.4);
}
@media (max-width: 880px) {
  .cart-fab {
    inset-block-end: 88px;
    inset-inline-end: 80px;
    width: 52px;
    height: 52px;
  }
  .cart-fab svg {
    width: 24px;
    height: 24px;
  }
}
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cart-modal.open {
  display: flex;
  animation: cartFadeIn 0.3s var(--ease);
}
@keyframes cartFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 11, 0.75);
  backdrop-filter: blur(8px);
}
.cart-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  background: linear-gradient(180deg, #1e2b21, #141d17);
  border: 1px solid rgba(224, 165, 61, 0.25);
  border-radius: 22px;
  box-shadow:
    0 30px 60px -10px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(224, 165, 61, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: cartSlideIn 0.35s var(--ease);
}
@keyframes cartSlideIn {
  from {
    transform: translateY(30px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.cart-close {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(243, 233, 214, 0.08);
  color: var(--cream, #f3e9d6);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.cart-close:hover {
  background: rgba(224, 165, 61, 0.2);
}
.cart-header {
  padding: 22px 24px 12px;
  border-block-end: 1px solid rgba(224, 165, 61, 0.12);
}
.cart-header h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--gold, #e0a53d);
  margin: 0 0 4px;
}
.cart-sub {
  color: var(--cream, #f3e9d6);
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
}
.cart-body {
  padding: 14px 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 80px;
}
.cart-empty {
  padding: 30px 12px;
  text-align: center;
  color: var(--cream, #f3e9d6);
  opacity: 0.65;
}
.cart-empty-ico {
  font-size: 2.5rem;
  margin-block-end: 10px;
  filter: grayscale(0.3);
}
.cart-empty p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-block-end: 1px solid rgba(243, 233, 214, 0.06);
}
.cart-item:last-child {
  border: none;
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex: none;
  background: #0f1611;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--cream, #f3e9d6);
  font-size: 0.98rem;
  margin: 0 0 4px;
  line-height: 1.3;
}
.cart-item-price {
  color: var(--gold, #e0a53d);
  font-size: 0.85rem;
  font-family: var(--f-numerals, var(--f-display));
}
.cart-item-price.tbc {
  color: #c8985e;
  font-style: italic;
  font-size: 0.78rem;
}
.cart-item-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-block-start: 6px;
}
.cart-item-ctrl button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(224, 165, 61, 0.3);
  background: rgba(224, 165, 61, 0.08);
  color: var(--cream, #f3e9d6);
  cursor: pointer;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.cart-item-ctrl button:hover {
  background: rgba(224, 165, 61, 0.2);
  border-color: var(--gold, #e0a53d);
}
.cart-item-ctrl .qty {
  min-width: 28px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--cream, #f3e9d6);
}
.cart-item-remove {
  margin-inline-start: auto;
  background: 0 0;
  border: none;
  color: var(--ember, #a5301f);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.cart-item-remove:hover {
  background: rgba(165, 48, 31, 0.15);
}
.cart-footer {
  padding: 16px 20px 20px;
  border-block-start: 1px solid rgba(224, 165, 61, 0.15);
  background: rgba(10, 15, 11, 0.4);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--cream, #f3e9d6);
  margin-block-end: 4px;
}
.cart-total-val b {
  font-size: 1.5rem;
  color: var(--gold, #e0a53d);
  margin-inline-end: 4px;
}
.cart-total-note {
  color: #c8985e;
  font-size: 0.78rem;
  margin: 0 0 14px;
  min-height: 1em;
  font-style: italic;
}
.cart-total-note:empty {
  display: none;
}
.cart-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block-end: 14px;
}
.cart-fields label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cart-fields label span {
  font-family: var(--f-display);
  font-size: 0.88rem;
  color: var(--cream, #f3e9d6);
  opacity: 0.85;
}
.cart-fields label span b {
  color: var(--ember, #a5301f);
  margin-inline-start: 3px;
}
.cart-fields input,
.cart-fields textarea {
  background: rgba(243, 233, 214, 0.05);
  border: 1px solid rgba(224, 165, 61, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--cream, #f3e9d6);
  font-family: inherit;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: vertical;
}
.cart-fields input:focus,
.cart-fields textarea:focus {
  outline: 0;
  border-color: var(--gold, #e0a53d);
  background: rgba(243, 233, 214, 0.08);
}
.cart-fields input.err {
  border-color: var(--ember, #a5301f);
  background: rgba(165, 48, 31, 0.08);
}
.cart-send {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(180deg, #2bd66a, #1faa52);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 30px -8px rgba(37, 180, 99, 0.7);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    filter 0.25s;
}
.cart-send:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 36px -10px rgba(37, 180, 99, 0.85);
}
.cart-send:active {
  transform: scale(0.98);
}
.cart-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.cart-send svg {
  width: 22px;
  height: 22px;
}
.cart-err {
  color: var(--ember, #a5301f);
  font-size: 0.85rem;
  margin: 8px 0 0;
  text-align: center;
  min-height: 1em;
}
.cart-err:empty {
  display: none;
}
body.cart-lock {
  overflow: hidden;
}
@media (max-width: 600px) {
  .cart-panel {
    max-height: 95vh;
    border-radius: 18px;
  }
  .cart-header {
    padding: 20px 20px 10px 46px;
  }
  .cart-header h3 {
    font-size: 1.3rem;
  }
  .cart-item-img {
    width: 54px;
    height: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: NaNs !important;
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  height: 2.5px;
  width: 0;
  z-index: 200;
  background: linear-gradient(
    90deg,
    var(--ember),
    var(--gold) 60%,
    var(--gold-soft)
  );
  box-shadow: 0 0 12px rgba(224, 165, 61, 0.7);
}
.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: radial-gradient(circle at 50% 42%, #22301f, #0e150f 70%);
  display: grid;
  place-items: center;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
.intro.done {
  opacity: 0;
  visibility: hidden;
}
.intro-inner {
  text-align: center;
  transform: translateY(0);
}
.intro .seal-xl {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, #2c3a2b, #161f17);
  border: 2px solid var(--gold);
  position: relative;
  box-shadow:
    inset 0 0 26px rgba(224, 165, 61, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.6);
  animation: sealPulse 2.4s var(--ease) infinite;
}
@keyframes sealPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 26px rgba(224, 165, 61, 0.3),
      0 0 0 0 rgba(224, 165, 61, 0.35);
  }
  50% {
    box-shadow:
      inset 0 0 26px rgba(224, 165, 61, 0.5),
      0 0 0 16px rgba(224, 165, 61, 0);
  }
}
.intro .seal-xl svg {
  width: 54px;
  height: 54px;
}
.intro h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--gold-soft);
  letter-spacing: 1px;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.25s forwards;
}
.intro .tag {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--cream-dim);
  margin-block-start: 8px;
  font-size: 1.05rem;
  letter-spacing: 2px;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.45s forwards;
}
.intro .bar {
  width: 0;
  height: 2px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: barGrow 1.6s var(--ease) 0.5s forwards;
}
@keyframes barGrow {
  to {
    width: 180px;
  }
}
.divider {
  position: relative;
  height: 1px;
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line) 20%,
    var(--line) 80%,
    transparent
  );
}
.divider span {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: var(--leather);
  display: grid;
  place-items: center;
}
.divider span::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 165, 61, 0.08);
}
html[dir="rtl"] .divider span {
  inset-inline-start: auto;
  inset-inline-end: 50%;
  transform: translate(50%, -50%);
}
.hero-frame {
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(224, 165, 61, 0.18);
  border-radius: 6px;
}
.hero-frame::after,
.hero-frame::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
}
.hero-frame::before {
  inset-block-start: -1px;
  inset-inline-start: -1px;
  border-top: 2px solid var(--gold);
  border-inline-start: 2px solid var(--gold);
}
.hero-frame::after {
  inset-block-end: -1px;
  inset-inline-end: -1px;
  border-bottom: 2px solid var(--gold);
  border-inline-end: 2px solid var(--gold);
}
@media (max-width: 600px) {
  .hero-frame {
    inset: 10px;
  }
}
.heritage {
  position: relative;
  padding-block: clamp(64px, 9vw, 110px);
  overflow: hidden;
  background: linear-gradient(180deg, #141c12, #1b271d);
}
.heritage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background: radial-gradient(
    140% 90% at 50% 0,
    rgba(224, 165, 61, 0.1),
    transparent 55%
  );
}
.heritage .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.heritage .est {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.02rem;
  margin-block-end: 18px;
}
.heritage blockquote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  line-height: 1.45;
  color: var(--cream);
  max-width: 880px;
  margin: 0 auto 14px;
}
.heritage blockquote .gold {
  color: var(--gold-soft);
}
.heritage cite {
  font-style: normal;
  color: var(--cream-dim);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.heritage .stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(30px, 6vw, 80px);
  margin-block-start: 52px;
}
.heritage .stat b {
  font-family: var(--f-num);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(224, 165, 61, 0.25));
}
.heritage .stat span {
  display: block;
  color: var(--cream-dim);
  font-size: 0.86rem;
  letter-spacing: 2px;
  margin-block-start: 8px;
  text-transform: uppercase;
}
.heritage .stat {
  position: relative;
}
.heritage .stat + .stat::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(-1 * clamp(15px, 3vw, 40px));
  inset-block: 8px 8px;
  width: 1px;
  background: var(--line);
}
html[dir="rtl"] .heritage .stat + .stat::before {
  inset-inline-start: auto;
  inset-inline-end: calc(-1 * clamp(15px, 3vw, 40px));
}
@media (max-width: 600px) {
  .heritage .stat + .stat::before {
    display: none;
  }
}
