/* ============================================================
   TAFILALET — RIAD LUXE · SHARED PAGE LAYOUTS
   index · menu · reservation · histoire · galerie · contact
   Scoped under body.luxe — relies on luxe.css tokens.
   ============================================================ */

/* utility used by app.js filters */
body.luxe .is-hidden { display: none !important; }

/* generic page hero (compact, for inner pages) */
body.luxe .lx-page-hero {
  position: relative;
  padding: clamp(130px, 16vw, 200px) 0 clamp(48px, 7vw, 90px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 82% 8%, rgba(201, 160, 90, 0.2), transparent 52%),
    radial-gradient(ellipse at 0% 90%, rgba(199, 91, 57, 0.07), transparent 48%),
    linear-gradient(180deg, var(--lx-ivory) 0%, var(--lx-paper) 100%);
}

body.luxe .lx-page-hero .lx-zellij-field::before { --lx-zellij-opacity: 0.06; }

body.luxe .lx-page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  margin: 14px 0 20px;
  max-width: 18ch;
}

body.luxe .lx-page-hero.center { text-align: center; }
body.luxe .lx-page-hero.center h1 { margin-inline: auto; }
body.luxe .lx-page-hero.center .lx-lede { margin-inline: auto; }
body.luxe .lx-page-hero.center .lx-kicker { justify-content: center; }

body.luxe .lx-page-hero .lx-arabic-title {
  font-family: var(--lx-arabic);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--lx-gold-deep);
  margin: 0;
}

/* section heading block */
body.luxe .lx-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 clamp(32px, 4vw, 52px);
}

body.luxe .lx-heading.center { align-items: center; text-align: center; }
body.luxe .lx-heading h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
body.luxe .lx-heading p.sub { color: var(--lx-muted); font-size: 1.05rem; max-width: 56ch; margin: 0; }
body.luxe .lx-heading.center p.sub { margin-inline: auto; }

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* HERO — split: copy + arched photo portal */
body.luxe .lx-home-hero {
  position: relative;
  padding: clamp(120px, 13vw, 175px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 85% 6%, rgba(201, 160, 90, 0.24), transparent 50%),
    radial-gradient(ellipse at -5% 95%, rgba(199, 91, 57, 0.1), transparent 48%),
    linear-gradient(180deg, var(--lx-ivory) 0%, var(--lx-paper) 100%);
}

body.luxe .lx-home-hero .lx-zellij-field::before { --lx-zellij-opacity: 0.055; }

body.luxe .lx-home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

body.luxe .lx-home-hero h1 {
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 0.96;
  margin: 16px 0 22px;
  max-width: 13ch;
}

body.luxe .lx-home-hero .lx-arabic-title {
  font-family: var(--lx-arabic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--lx-gold-deep);
  margin: 0;
}

body.luxe .lx-home-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 38px;
}

body.luxe .lx-metrics {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  flex-wrap: wrap;
}

body.luxe .lx-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.luxe .lx-metric strong {
  font-family: var(--lx-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600;
  font-style: italic;
  color: var(--lx-terracotta-deep);
  line-height: 1;
}

body.luxe .lx-metric span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lx-muted);
}

body.luxe .lx-metric + .lx-metric {
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid var(--lx-line);
}

/* arched photo portal — developed: Ken Burns, rotating ring, shimmer, reveal */
body.luxe .lx-portal-wrap {
  position: relative;
  isolation: isolate;
}

body.luxe .lx-portal-ring {
  position: absolute;
  inset: -7%;
  z-index: 0;
  color: var(--lx-gold-deep);
  opacity: 0.45;
  pointer-events: none;
  animation: lxRingSpin 48s linear infinite;
}

body.luxe .lx-portal-ring svg { width: 100%; height: 100%; display: block; }

@keyframes lxRingSpin { to { transform: rotate(360deg); } }

body.luxe .lx-portal {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: var(--lx-arch-top);
  overflow: hidden;
  box-shadow: var(--lx-shadow-deep);
  border: 1px solid var(--lx-line-gold);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  animation: lxArchReveal 1.1s var(--lx-ease-silk) both;
}

@keyframes lxArchReveal {
  from { clip-path: inset(0 0 100% 0 round 0 0 0 0); }
  to   { clip-path: inset(0 0 0 0 round 200px 200px 16px 16px); }
}

body.luxe .lx-portal picture { display: block; width: 100%; height: 100%; }

body.luxe .lx-portal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: lxKenBurns 20s var(--lx-ease-soft) infinite alternate;
}

@keyframes lxKenBurns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.14) translate(-2%, -2%); }
}

body.luxe .lx-portal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -110px 130px rgba(18, 12, 8, 0.55);
  pointer-events: none;
  z-index: 2;
}

/* gold shimmer sweep */
body.luxe .lx-portal-shimmer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(232, 193, 119, 0.34) 50%, transparent 62%);
  transform: translateX(-120%);
  animation: lxShimmerSweep 7s var(--lx-ease-silk) 1.4s infinite;
}

@keyframes lxShimmerSweep {
  0%   { transform: translateX(-120%); }
  22%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

body.luxe .lx-portal-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247, 240, 227, 0.42);
  border-radius: calc(var(--lx-arch-top));
  pointer-events: none;
  z-index: 4;
}

body.luxe .lx-floating-note {
  position: absolute;
  z-index: 5;
  background: rgba(251, 246, 234, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--lx-line-gold);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--lx-shadow-warm);
  max-width: 190px;
  opacity: 0;
  animation: lxNoteIn 0.9s var(--lx-ease-silk) forwards, lxNoteFloat 6s var(--lx-ease-silk) infinite;
}

body.luxe .lx-floating-note i {
  font-family: var(--lx-arabic);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--lx-terracotta-deep);
  display: block;
}

body.luxe .lx-floating-note strong {
  display: block;
  font-family: var(--lx-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--lx-espresso);
  margin: 1px 0 2px;
}

body.luxe .lx-floating-note span {
  font-size: 0.78rem;
  color: var(--lx-muted);
  line-height: 1.35;
}

/* notes fully INSIDE the portal — never clipped */
body.luxe .lx-floating-note.note-a { top: 40%; left: 16px; transform: translateY(-50%); animation-delay: 1s, 1s; }
body.luxe .lx-floating-note.note-b { bottom: 20px; right: 16px; animation-delay: 1.45s, 1.45s; }

@keyframes lxNoteIn {
  from { opacity: 0; transform: translateY(14px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* note-a keeps its vertical centering through the float */
body.luxe .lx-floating-note.note-a { animation-name: lxNoteInA, lxNoteFloatA; }
@keyframes lxNoteInA {
  from { opacity: 0; transform: translateY(-50%) translateY(14px) scale(0.92); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}
@keyframes lxNoteFloatA {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(-50%) translateY(-8px); }
}

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

@media (prefers-reduced-motion: reduce) {
  body.luxe .lx-portal,
  body.luxe .lx-portal img,
  body.luxe .lx-portal-ring,
  body.luxe .lx-portal-shimmer,
  body.luxe .lx-floating-note { animation: none !important; opacity: 1; clip-path: none; }
}

/* ============================================================
   RICH BAND — warm "riad sunset" replacement for black sections
   ============================================================ */
body.luxe .lx-rich {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--lx-paper);
  background:
    radial-gradient(ellipse 60% 90% at 22% 12%, rgba(224, 126, 92, 0.5), transparent 60%),
    radial-gradient(ellipse 70% 90% at 88% 92%, rgba(201, 160, 90, 0.36), transparent 58%),
    linear-gradient(135deg, #34180d 0%, #6a2b17 55%, #883722 100%);
}

/* drifting zellij layer */
body.luxe .lx-rich::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  opacity: 0.12;
  background: var(--lx-zellij-svg);
  background-size: 200px;
  filter: invert(1) sepia(1) saturate(1.4) brightness(1.1);
  animation: lxRichDrift 60s linear infinite;
}

/* pulsing warm glow */
body.luxe .lx-rich-glow {
  position: absolute;
  width: 70%;
  height: 180%;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232, 193, 119, 0.3), transparent 65%);
  animation: lxGlowPulse 7s var(--lx-ease-silk) infinite;
  pointer-events: none;
}

body.luxe .lx-rich h2 { color: var(--lx-paper); }
body.luxe .lx-rich .lx-kicker { color: var(--lx-gold-soft); }
body.luxe .lx-rich p { color: rgba(247, 240, 227, 0.82); }

@keyframes lxRichDrift {
  from { background-position: 0 0; }
  to   { background-position: 200px 400px; }
}

@keyframes lxGlowPulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.85; transform: translateX(-50%) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  body.luxe .lx-rich::before,
  body.luxe .lx-rich-glow { animation: none; }
}

/* PROOF STRIP */
body.luxe .lx-proof {
  padding: clamp(36px, 4.4vw, 60px) 0;
}

body.luxe .lx-rich-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--lx-gold-soft);
  margin: 0 0 clamp(24px, 3vw, 36px);
}

body.luxe .lx-rich-topline .line {
  height: 1px;
  width: min(180px, 22vw);
  background: linear-gradient(90deg, transparent, currentColor);
  opacity: 0.5;
}

body.luxe .lx-rich-topline .line:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

body.luxe .lx-rich-topline svg { width: 26px; height: 26px; }

body.luxe .lx-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

body.luxe .lx-proof-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

body.luxe .lx-proof-cell + .lx-proof-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  height: 84%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(232, 193, 119, 0.32), transparent);
}

body.luxe .lx-proof-cell .v {
  font-family: var(--lx-display);
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  color: var(--lx-gold-bright);
  line-height: 1;
}

body.luxe .lx-proof-cell .stars {
  color: var(--lx-gold);
  font-size: 0.86rem;
  letter-spacing: 2px;
}

body.luxe .lx-proof-cell .l {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 240, 227, 0.7);
}

/* STORY BAND */
body.luxe .lx-story-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

body.luxe .lx-story-copy p {
  color: var(--lx-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 52ch;
}

body.luxe .lx-arched-photo {
  position: relative;
  margin: 0;
  border-radius: var(--lx-arch-top);
  overflow: hidden;
  box-shadow: var(--lx-shadow-warm);
  border: 1px solid var(--lx-line-gold);
}

body.luxe .lx-arched-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--lx-ease-silk);
}

body.luxe .lx-arched-photo:hover img { transform: scale(1.04); }

body.luxe .lx-arched-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--lx-paper);
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(18, 12, 8, 0.6);
}

body.luxe .lx-arched-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -90px 120px rgba(18, 12, 8, 0.5);
  pointer-events: none;
}

/* SPECIALTIES grid (compact photo dish cards, single row) */
body.luxe .lx-dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.luxe .lx-dish {
  position: relative;
  border-radius: var(--lx-radius);
  overflow: hidden;
  background: var(--lx-paper);
  border: 1px solid var(--lx-line);
  box-shadow: var(--lx-shadow-card);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  /* enter curve from ui-animation skill — interruptible transitions on transform/opacity only */
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms ease;
}

/* gold spotlight overlay revealed on hover */
body.luxe .lx-dish::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(201, 160, 90, 0.22), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover guard — only on pointers that hover (no touch false-positives) */
@media (hover: hover) and (pointer: fine) {
  body.luxe .lx-dish:hover {
    transform: translateY(-4px);
    box-shadow: var(--lx-shadow-warm);
    border-color: var(--lx-line-gold);
  }
  body.luxe .lx-dish:hover::before { opacity: 1; }
  body.luxe .lx-dish:hover .lx-dish-media img { transform: scale(1.04); }
}

body.luxe .lx-dish-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

body.luxe .lx-dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: auto;
}

body.luxe .lx-dish-media .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(251, 246, 234, 0.94);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lx-terracotta-deep);
}

body.luxe .lx-dish-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 2;
}

body.luxe .lx-dish-body h3 {
  font-family: var(--lx-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

body.luxe .lx-dish-body p {
  color: var(--lx-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  /* clamp description to 2 lines for height uniformity */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.luxe .lx-dish-body .price {
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--lx-terracotta-deep);
  margin-top: 4px;
}

/* RICH BAND (menu preview, booking) — warm sunset instead of black */
body.luxe .lx-dark-band {
  color: var(--lx-paper);
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 60% 90% at 20% 10%, rgba(224, 126, 92, 0.5), transparent 60%),
    radial-gradient(ellipse 70% 90% at 88% 94%, rgba(201, 160, 90, 0.34), transparent 58%),
    linear-gradient(135deg, #34180d 0%, #6a2b17 55%, #883722 100%);
}

body.luxe .lx-dark-band::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  opacity: 0.12;
  background: var(--lx-zellij-svg);
  background-size: 200px;
  filter: invert(1) sepia(1) saturate(1.4) brightness(1.1);
  animation: lxRichDrift 60s linear infinite;
}

body.luxe .lx-dark-band::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 160%;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232, 193, 119, 0.26), transparent 65%);
  animation: lxGlowPulse 8s var(--lx-ease-silk) infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  body.luxe .lx-dark-band::before,
  body.luxe .lx-dark-band::after { animation: none; }
}

body.luxe .lx-dark-band h2 { color: var(--lx-paper); }
body.luxe .lx-dark-band .lx-kicker { color: var(--lx-gold-soft); }
body.luxe .lx-dark-band p { color: rgba(247, 240, 227, 0.82); }

body.luxe .lx-cat-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
}

body.luxe .lx-cat-tiles a {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(247, 240, 227, 0.18);
  color: var(--lx-paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.32s, border-color 0.32s, transform 0.4s var(--lx-ease-silk);
}

body.luxe .lx-cat-tiles a:hover {
  background: var(--lx-gold);
  border-color: var(--lx-gold);
  color: var(--lx-night);
  transform: translateY(-2px);
}

/* TAKEAWAY TEASE */
body.luxe .lx-tease-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

body.luxe .lx-tease-aside {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(160deg, var(--lx-paper-warm), var(--lx-ivory-deep));
  border: 1px solid var(--lx-line-gold);
  border-radius: var(--lx-arch-top);
  box-shadow: var(--lx-shadow-card);
  overflow: hidden;
}

body.luxe .lx-tease-aside::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto 14px;
  height: 60px;
  border: 1px solid var(--lx-line-gold-strong);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

body.luxe .lx-tease-aside-inner { position: relative; padding-top: 32px; }
body.luxe .lx-tease-aside h3 { font-size: 1.8rem; font-weight: 500; margin: 8px 0 10px; }
body.luxe .lx-tease-aside p { color: var(--lx-muted); margin: 0 0 18px; font-size: 0.96rem; line-height: 1.5; }

body.luxe .lx-bullets {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.luxe .lx-bullets li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  color: var(--lx-espresso);
}

body.luxe .lx-bullets .n {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--lx-line-gold);
  font-family: var(--lx-display);
  font-style: italic;
  font-weight: 600;
  color: var(--lx-gold-deep);
  background: rgba(201, 160, 90, 0.08);
}

body.luxe .lx-tease-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* GALLERY TEASE (split) */
body.luxe .lx-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

body.luxe .lx-masonry-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

body.luxe .lx-masonry-pair picture {
  display: block;
  border-radius: var(--lx-radius-lg);
  overflow: hidden;
  box-shadow: var(--lx-shadow-soft);
  border: 1px solid var(--lx-line);
}

body.luxe .lx-masonry-pair img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--lx-ease-silk); }
body.luxe .lx-masonry-pair picture:hover img { transform: scale(1.05); }
body.luxe .lx-masonry-pair .tall { margin-top: 32px; aspect-ratio: 3/4; }
body.luxe .lx-masonry-pair picture:first-child { aspect-ratio: 3/4; }

/* PRACTICAL */
body.luxe .lx-practical-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}

body.luxe .lx-status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 24px;
  color: var(--lx-muted);
  font-size: 0.95rem;
}

body.luxe .lx-hours {
  display: flex;
  flex-direction: column;
  margin: 0;
}

body.luxe .lx-hours > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lx-line);
}

body.luxe .lx-hours dt { font-weight: 600; color: var(--lx-espresso); margin: 0; }
body.luxe .lx-hours dd { margin: 0; color: var(--lx-muted); text-align: right; font-variant-numeric: tabular-nums; }

body.luxe .lx-nearby {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 2.4vw, 32px);
  background: var(--lx-paper);
  border: 1px solid var(--lx-line);
  border-radius: var(--lx-radius-lg);
  box-shadow: var(--lx-shadow-card);
}

body.luxe .lx-nearby span {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--lx-line);
  font-size: 0.95rem;
  color: var(--lx-espresso);
}

body.luxe .lx-nearby span:last-child { border-bottom: 0; }

/* REVIEWS */
body.luxe .lx-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.luxe .lx-review {
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  background: var(--lx-paper);
  border: 1px solid var(--lx-line);
  border-radius: var(--lx-radius-lg);
  box-shadow: var(--lx-shadow-card);
  font-family: var(--lx-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--lx-espresso);
  margin: 0;
  transition: transform 0.45s var(--lx-ease-silk), box-shadow 0.45s, border-color 0.32s;
}

body.luxe .lx-review:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow-warm); border-color: var(--lx-line-gold); }

body.luxe .lx-review::before {
  content: "\201C";
  font-family: var(--lx-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--lx-gold-soft);
  display: block;
  margin-bottom: 8px;
}

body.luxe .lx-review .stars {
  display: flex;
  gap: 3px;
  margin: 16px 0 0;
  color: var(--lx-gold);
}

body.luxe .lx-review cite {
  display: block;
  margin-top: 14px;
  font-family: var(--lx-body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lx-muted);
}

/* ============================================================
   MENU PAGE
   ============================================================ */

body.luxe .lx-filter-bar {
  position: sticky;
  top: 92px;
  z-index: 30;
  display: flex;
  gap: 4px;
  padding: 6px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  width: max-content;
  max-width: 100%;
  background: rgba(247, 240, 227, 0.9);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--lx-line);
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: var(--lx-shadow-soft);
}

body.luxe .lx-filter-bar::-webkit-scrollbar { display: none; }

body.luxe .lx-filter-btn {
  flex-shrink: 0;
  appearance: none;
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--lx-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lx-espresso);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.32s, color 0.32s;
}

body.luxe .lx-filter-btn:hover { background: var(--lx-ivory-deep); }
body.luxe .lx-filter-btn.is-active { background: var(--lx-espresso); color: var(--lx-paper); }

body.luxe .lx-menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

body.luxe .lx-takeaway-panel {
  position: sticky;
  top: 110px;
  padding: clamp(28px, 3vw, 38px);
  background:
    radial-gradient(ellipse 80% 70% at 20% 8%, rgba(224, 126, 92, 0.5), transparent 60%),
    linear-gradient(160deg, #5e2615, #34180d);
  color: var(--lx-paper);
  border-radius: var(--lx-radius-lg);
  border: 1px solid var(--lx-line-gold);
  box-shadow: var(--lx-shadow-deep);
  overflow: hidden;
  isolation: isolate;
}

body.luxe .lx-takeaway-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 220px;
  height: 220px;
  z-index: -1;
  opacity: 0.16;
  background: var(--lx-zellij-star-svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: invert(1) sepia(0.5) saturate(2);
}

body.luxe .lx-takeaway-panel h2 { color: var(--lx-paper); font-size: 1.7rem; font-weight: 500; margin: 8px 0 12px; }
body.luxe .lx-takeaway-panel .lx-kicker { color: var(--lx-gold-soft); }
body.luxe .lx-takeaway-panel p { color: rgba(247, 240, 227, 0.78); font-size: 0.96rem; line-height: 1.55; margin: 0 0 20px; }
body.luxe .lx-takeaway-panel .lx-or { text-align: center; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247, 240, 227, 0.5); margin: 16px 0 8px; }
body.luxe .lx-takeaway-panel .lx-phone {
  display: block;
  text-align: center;
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--lx-gold-soft);
  text-decoration: none;
}

body.luxe .lx-menu-groups { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); min-width: 0; }

body.luxe .lx-menu-group { scroll-margin-top: 160px; }

body.luxe .lx-menu-group-head { margin: 0 0 24px; }
body.luxe .lx-menu-group-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 500; }

body.luxe .lx-menu-list { display: flex; flex-direction: column; }

body.luxe .lx-menu-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--lx-line);
  transition: padding 0.4s var(--lx-ease-silk);
}

body.luxe .lx-menu-row:hover { padding-left: 12px; }

body.luxe .lx-menu-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 56%;
  background: linear-gradient(180deg, var(--lx-gold-soft), var(--lx-gold-deep));
  border-radius: 2px;
  transition: transform 0.4s var(--lx-ease-silk);
}

body.luxe .lx-menu-row:hover::before { transform: translateY(-50%) scaleY(1); }

body.luxe .lx-menu-row.featured {
  background: linear-gradient(90deg, rgba(201, 160, 90, 0.08), transparent 70%);
  border-radius: 12px;
  padding: 16px;
  margin: 4px 0;
  border-bottom: 1px solid var(--lx-line);
}

body.luxe .lx-menu-row.featured h3::after {
  content: "★";
  margin-left: 8px;
  color: var(--lx-gold);
  font-size: 0.8em;
}

body.luxe .lx-menu-row h3 {
  font-family: var(--lx-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

body.luxe .lx-menu-row p {
  color: var(--lx-muted);
  font-size: 0.9rem;
  margin: 4px 0 0;
  line-height: 1.4;
}

body.luxe .lx-menu-row .price {
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lx-terracotta-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* original menu scans */
body.luxe .lx-scan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.luxe .lx-scan {
  display: block;
  border-radius: var(--lx-radius);
  overflow: hidden;
  box-shadow: var(--lx-shadow-deep);
  border: 1px solid rgba(247, 240, 227, 0.16);
  transition: transform 0.5s var(--lx-ease-silk);
}

body.luxe .lx-scan:hover { transform: translateY(-6px) scale(1.01); }
body.luxe .lx-scan img { width: 100%; height: auto; display: block; }

/* ============================================================
   RESERVATION PAGE
   ============================================================ */

body.luxe .lx-reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

body.luxe .lx-reservation-form {
  background: var(--lx-paper);
  border: 1px solid var(--lx-line-gold);
  border-radius: var(--lx-radius-lg);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--lx-shadow-card);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.luxe .lx-reservation-form::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  z-index: -1;
  width: 260px;
  height: 260px;
  background: var(--lx-zellij-rosette-svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
}

body.luxe .lx-res-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lx-muted);
}

body.luxe .lx-res-progress .line {
  flex: 1;
  height: 3px;
  background: var(--lx-ivory-deep);
  border-radius: 2px;
  overflow: hidden;
}

body.luxe .lx-res-progress .line i {
  display: block;
  height: 100%;
  width: 14%;
  background: linear-gradient(90deg, var(--lx-gold), var(--lx-terracotta));
  border-radius: 2px;
  transition: width 0.6s var(--lx-ease-silk);
}

body.luxe .lx-choice-set {
  border: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

body.luxe .lx-choice-set legend {
  font-family: var(--lx-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lx-espresso);
  margin: 0 0 14px;
  padding: 0;
  float: left;
  width: 100%;
}

body.luxe .lx-choice {
  appearance: none;
  text-align: left;
  cursor: pointer;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--lx-line-strong);
  background: var(--lx-ivory);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.32s, background 0.32s, transform 0.4s var(--lx-ease-silk);
}

body.luxe .lx-choice:hover { transform: translateY(-2px); border-color: var(--lx-line-gold-strong); }

body.luxe .lx-choice.is-selected {
  border-color: var(--lx-terracotta);
  background: rgba(199, 91, 57, 0.07);
  box-shadow: 0 0 0 1px var(--lx-terracotta);
}

body.luxe .lx-choice span {
  font-family: var(--lx-arabic);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--lx-terracotta-deep);
}

body.luxe .lx-choice strong { font-family: var(--lx-display); font-size: 1.1rem; font-weight: 500; color: var(--lx-espresso); }
body.luxe .lx-choice small { font-size: 0.8rem; color: var(--lx-muted); line-height: 1.3; }

body.luxe .lx-res-note { margin: 16px 0 24px; font-size: 0.9rem; color: var(--lx-muted); }
body.luxe .lx-res-note a { color: var(--lx-terracotta-deep); font-weight: 600; text-decoration: none; }

body.luxe .lx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.luxe .lx-form-grid .full { grid-column: 1 / -1; }

body.luxe .lx-summary-card {
  position: sticky;
  top: 110px;
  background: var(--lx-paper);
  border: 1px solid var(--lx-line-gold);
  border-radius: var(--lx-radius-lg);
  box-shadow: var(--lx-shadow-card);
  overflow: hidden;
}

body.luxe .lx-summary-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

body.luxe .lx-summary-media img { width: 100%; height: 100%; object-fit: cover; }

body.luxe .lx-summary-media .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(251, 246, 234, 0.92);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lx-terracotta-deep);
}

body.luxe .lx-summary-body { padding: clamp(22px, 2.4vw, 30px); }
body.luxe .lx-summary-body h2 { font-size: 1.6rem; font-weight: 500; margin: 6px 0 18px; }

body.luxe .lx-summary-lines { display: flex; flex-direction: column; gap: 0; margin: 0 0 20px; }
body.luxe .lx-summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--lx-line);
}
body.luxe .lx-summary-lines span { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lx-muted); }
body.luxe .lx-summary-lines strong { font-family: var(--lx-display); font-weight: 500; color: var(--lx-espresso); text-align: right; }

body.luxe .lx-summary-phone {
  display: block;
  text-align: center;
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lx-terracotta-deep);
  text-decoration: none;
  padding: 12px;
  border: 1px solid var(--lx-line-gold);
  border-radius: 12px;
}

/* ============================================================
   HISTOIRE PAGE
   ============================================================ */

body.luxe .lx-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.luxe .lx-pillar {
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  background: var(--lx-paper);
  border: 1px solid var(--lx-line);
  border-radius: var(--lx-radius-lg);
  box-shadow: var(--lx-shadow-card);
  transition: transform 0.45s var(--lx-ease-silk), box-shadow 0.45s, border-color 0.32s;
}

body.luxe .lx-pillar:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow-warm); border-color: var(--lx-line-gold); }

body.luxe .lx-pillar .n {
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--lx-gold-soft);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

body.luxe .lx-pillar h3 { font-family: var(--lx-display); font-size: 1.4rem; font-weight: 500; margin: 0 0 8px; }
body.luxe .lx-pillar p { color: var(--lx-muted); font-size: 0.96rem; line-height: 1.55; margin: 0; }

body.luxe .lx-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

body.luxe .lx-bigquote {
  font-family: var(--lx-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--lx-espresso);
  margin: 0;
  position: relative;
  padding-left: 28px;
}

body.luxe .lx-bigquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--lx-gold), var(--lx-terracotta));
  border-radius: 2px;
}

body.luxe .lx-timeline { display: flex; flex-direction: column; gap: 0; }

body.luxe .lx-timeline > div {
  position: relative;
  padding: 0 0 28px 36px;
  border-left: 1px solid var(--lx-line-gold);
}

body.luxe .lx-timeline > div:last-child { padding-bottom: 0; }

body.luxe .lx-timeline > div::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lx-paper);
  border: 2px solid var(--lx-gold);
}

body.luxe .lx-timeline span {
  font-family: var(--lx-arabic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--lx-terracotta-deep);
  display: block;
  margin-bottom: 4px;
}

body.luxe .lx-timeline p { color: var(--lx-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   GALERIE PAGE
   ============================================================ */

body.luxe .lx-gallery-grid {
  columns: 3;
  column-gap: 16px;
}

body.luxe .lx-gallery-item {
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  margin: 0 0 16px;
  border-radius: var(--lx-radius);
  overflow: hidden;
  background: var(--lx-paper);
  box-shadow: var(--lx-shadow-soft);
  break-inside: avoid;
  position: relative;
}

body.luxe .lx-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--lx-ease-silk);
}

body.luxe .lx-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 12, 8, 0.36));
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.luxe .lx-gallery-item:hover img { transform: scale(1.06); }
body.luxe .lx-gallery-item:hover::after { opacity: 1; }

body.luxe .lx-insta-note {
  text-align: center;
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

body.luxe .lx-insta-note p { color: var(--lx-muted); font-size: 1.05rem; margin: 0; }

body.luxe .lx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(18, 12, 8, 0.88);
  backdrop-filter: blur(8px);
}

body.luxe .lx-lightbox[hidden] { display: none; }

body.luxe .lx-lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: var(--lx-radius);
  box-shadow: var(--lx-shadow-deep);
  border: 1px solid var(--lx-line-gold);
}

body.luxe .lx-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(247, 240, 227, 0.3);
  background: rgba(247, 240, 227, 0.1);
  color: var(--lx-paper);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s;
}

body.luxe .lx-lightbox-close:hover { background: rgba(247, 240, 227, 0.22); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

body.luxe .lx-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

body.luxe .lx-contact-form {
  background: var(--lx-paper);
  border: 1px solid var(--lx-line-gold);
  border-radius: var(--lx-radius-lg);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--lx-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.luxe .lx-contact-info {
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(165deg, var(--lx-paper-warm), var(--lx-ivory-deep));
  border: 1px solid var(--lx-line-gold);
  border-radius: var(--lx-radius-lg);
  box-shadow: var(--lx-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.luxe .lx-contact-info h2 { font-size: 1.7rem; font-weight: 500; margin: 4px 0 12px; }

body.luxe .lx-contact-info a {
  color: var(--lx-espresso);
  text-decoration: none;
  font-size: 1.02rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--lx-line);
  transition: color 0.3s;
}

body.luxe .lx-contact-info a:hover { color: var(--lx-terracotta-deep); }

body.luxe .lx-contact-info a.lx-phone-big {
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--lx-terracotta-deep);
  border-bottom: none;
}

body.luxe .lx-map {
  border-radius: var(--lx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lx-line-gold);
  box-shadow: var(--lx-shadow-card);
  height: clamp(320px, 42vw, 460px);
}

body.luxe .lx-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85) sepia(0.08); }

body.luxe .lx-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body.luxe .lx-faq {
  background: var(--lx-paper);
  border: 1px solid var(--lx-line);
  border-radius: var(--lx-radius);
  padding: 4px 22px;
  transition: border-color 0.32s, box-shadow 0.32s;
}

body.luxe .lx-faq[open] { border-color: var(--lx-line-gold); box-shadow: var(--lx-shadow-soft); }

body.luxe .lx-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--lx-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--lx-espresso);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

body.luxe .lx-faq summary::-webkit-details-marker { display: none; }

body.luxe .lx-faq summary::after {
  content: "+";
  font-family: var(--lx-body);
  font-size: 1.4rem;
  color: var(--lx-gold-deep);
  transition: transform 0.32s var(--lx-ease-silk);
}

body.luxe .lx-faq[open] summary::after { transform: rotate(45deg); }

body.luxe .lx-faq p { color: var(--lx-muted); margin: 0 0 18px; line-height: 1.55; max-width: 56ch; }

/* ============================================================
   FORM FIELDS (shared, contact + reservation)
   ============================================================ */

body.luxe .lx-field-block { display: flex; flex-direction: column; gap: 6px; }

body.luxe .lx-field-block label {
  font-family: var(--lx-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lx-espresso);
}

body.luxe .lx-field-block input,
body.luxe .lx-field-block textarea {
  appearance: none;
  font-family: var(--lx-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid var(--lx-line-strong);
  border-radius: 12px;
  background: var(--lx-ivory);
  color: var(--lx-espresso);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  width: 100%;
}

body.luxe .lx-field-block textarea { resize: vertical; min-height: 96px; }

body.luxe .lx-field-block input:focus,
body.luxe .lx-field-block textarea:focus {
  outline: none;
  border-color: var(--lx-gold);
  background: var(--lx-paper);
  box-shadow: 0 0 0 4px rgba(201, 160, 90, 0.18);
}

body.luxe .lx-form-note {
  margin: 4px 0 0;
  font-size: 0.92rem;
  font-family: var(--lx-display);
  font-style: italic;
  color: var(--lx-terracotta-deep);
  min-height: 1.2em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  body.luxe .lx-home-hero-inner,
  body.luxe .lx-story-grid,
  body.luxe .lx-tease-grid,
  body.luxe .lx-split-layout,
  body.luxe .lx-practical-grid,
  body.luxe .lx-menu-layout,
  body.luxe .lx-reservation-grid,
  body.luxe .lx-quote-grid,
  body.luxe .lx-trust-grid,
  body.luxe .lx-contact-grid { grid-template-columns: 1fr; }

  body.luxe .lx-takeaway-panel,
  body.luxe .lx-summary-card { position: static; }
  body.luxe .lx-gallery-grid { columns: 2; }
  body.luxe .lx-scan-grid { grid-template-columns: 1fr 1fr; }
  body.luxe .lx-pillars,
  body.luxe .lx-reviews-grid { grid-template-columns: 1fr; }
  body.luxe .lx-portal { max-width: 460px; margin: 0 auto; }
  body.luxe .lx-floating-note { display: none; }
}

/* ============================================================
   TRUST SECTION (homepage) — confidence builder
   ============================================================ */
body.luxe .lx-trust-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

body.luxe .lx-trust-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body.luxe .lx-trust-media figure {
  margin: 0;
  border-radius: var(--lx-radius-lg);
  overflow: hidden;
  box-shadow: var(--lx-shadow-card);
  border: 1px solid var(--lx-line-gold);
  position: relative;
}

body.luxe .lx-trust-media figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--lx-ease-silk);
}

body.luxe .lx-trust-media figure:hover img { transform: scale(1.06); }

body.luxe .lx-trust-media .m1 { grid-row: 1 / 3; aspect-ratio: 3 / 4.5; border-radius: var(--lx-arch-top); }
body.luxe .lx-trust-media .m2 { aspect-ratio: 4 / 3; }
body.luxe .lx-trust-media .m3 { aspect-ratio: 4 / 3; }

body.luxe .lx-trust-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.luxe .lx-trust-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

body.luxe .lx-trust-point .ic {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 160, 90, 0.12);
  border: 1px solid var(--lx-line-gold);
  color: var(--lx-gold-deep);
}

body.luxe .lx-trust-point .ic svg { width: 22px; height: 22px; }

body.luxe .lx-trust-point strong {
  font-family: var(--lx-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--lx-espresso);
  display: block;
  line-height: 1.2;
}

body.luxe .lx-trust-point p {
  color: var(--lx-muted);
  font-size: 0.92rem;
  margin: 3px 0 0;
  line-height: 1.45;
}

body.luxe .lx-trust-quote {
  margin: 6px 0 0;
  padding: 18px 22px;
  background: var(--lx-paper);
  border: 1px solid var(--lx-line-gold);
  border-radius: var(--lx-radius);
  box-shadow: var(--lx-shadow-soft);
  font-family: var(--lx-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--lx-espresso);
  position: relative;
}

body.luxe .lx-trust-quote .stars { display: block; color: var(--lx-gold); margin-top: 8px; font-size: 0.92rem; letter-spacing: 2px; }

body.luxe .lx-trust-quote cite {
  display: block;
  font-family: var(--lx-body);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lx-muted);
  margin-top: 6px;
}

@media (max-width: 640px) {
  body.luxe .lx-trust-media { grid-template-columns: 1fr 1fr; }
  body.luxe .lx-trust-media .m1 { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16 / 10; border-radius: var(--lx-radius-lg); }
  body.luxe .lx-dish-grid { grid-template-columns: 1fr 1fr; }
  body.luxe .lx-gallery-grid { columns: 1; }
  body.luxe .lx-scan-grid { grid-template-columns: 1fr; }
  body.luxe .lx-form-grid,
  body.luxe .lx-choice-set,
  body.luxe .lx-faq-grid { grid-template-columns: 1fr; }
  body.luxe .lx-masonry-pair .tall { margin-top: 0; }
  body.luxe .lx-metric + .lx-metric { padding-left: 16px; }
}

@media (max-width: 380px) {
  body.luxe .lx-dish-grid { grid-template-columns: 1fr; }
}

/* ============ CINEMATIC FILM BAND ============ */
body.luxe .lx-film {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body.luxe .lx-film-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
body.luxe .lx-film-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(38px) saturate(1.1) brightness(0.42);
  transform: scale(1.18);
  opacity: 0.55;
}
body.luxe .lx-film::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 78% 30%, rgba(199,91,57,0.18), transparent 60%),
    linear-gradient(180deg, rgba(18,12,8,0.82), rgba(18,12,8,0.92));
  pointer-events: none;
}
body.luxe .lx-film-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
body.luxe .lx-film-copy .lx-arabic-title {
  margin-bottom: 10px;
}
body.luxe .lx-film-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
body.luxe .lx-film-frame {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 220px 220px 26px 26px;
  overflow: hidden;
  border: 1px solid rgba(232,193,119,0.32);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(247,240,227,0.06);
  background: #0c0805;
}
body.luxe .lx-film-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.luxe .lx-film-glow {
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 60px -10px rgba(0,0,0,0.55);
}
body.luxe .lx-film-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  text-align: center;
  font-family: var(--lx-font-arabic, "Amiri", serif);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--lx-gold-soft, #e8c177);
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
@media (max-width: 860px) {
  body.luxe .lx-film-grid { grid-template-columns: 1fr; gap: 36px; }
  body.luxe .lx-film-copy { text-align: center; }
  body.luxe .lx-film-copy .lx-arabic-title,
  body.luxe .lx-film-copy .lx-kicker.flanked { justify-content: center; text-align: center; }
  body.luxe .lx-film-actions { justify-content: center; }
  body.luxe .lx-film-frame { width: min(320px, 86%); }
}

/* ============ HERO PORTAL VIDEO + ARCHED VIDEO ============ */
body.luxe .lx-portal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  background: #0c0805;
}
body.luxe .lx-arched-video { background: #0c0805; }
body.luxe .lx-arched-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ SFEER & RUST (ambiance + calm) ============ */
body.luxe .lx-ambiance { position: relative; overflow: hidden; }
body.luxe .lx-ambiance-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  max-width: 720px;
  max-height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,160,90,0.18), rgba(201,160,90,0) 62%);
  pointer-events: none;
  z-index: 0;
}
body.luxe .lx-ambiance > .lx-container { position: relative; z-index: 1; }
body.luxe .lx-ambiance-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
body.luxe .lx-ambiance-lantern {
  aspect-ratio: 9 / 16;
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}
body.luxe .lx-ambiance-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
}
body.luxe .lx-ambiance-photos .lx-arched-photo { aspect-ratio: 4 / 5; }
body.luxe .lx-ambiance-cues {
  list-style: none;
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
body.luxe .lx-ambiance-cues li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--lx-font-display, "Cormorant Garamond", serif);
  font-size: 1.18rem;
  color: var(--lx-night, #120c08);
}
body.luxe .lx-ambiance-cues li .ic {
  flex: 0 0 auto;
  color: var(--lx-terra, #c75b39);
  display: inline-flex;
}
body.luxe .lx-ambiance-cues li .ic svg { width: 20px; height: 20px; }
@media (max-width: 860px) {
  body.luxe .lx-ambiance-grid { grid-template-columns: 1fr; gap: 32px; }
  body.luxe .lx-ambiance-lantern { max-width: 260px; }
}
