/* ═══════════════════════════════════════════════════════════
   SPECIAL TANJIA — Luxury Design System v3
   Palette : Black · Gold · Cream  |  Location : Marrakech
═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Gold family */
  --gold:        #C9A84C;
  --gold-light:  #E8CC80;
  --gold-dim:    #A07828;
  --gold-dark:   #5C3D0A;
  --gold-glow:   rgba(201, 168, 76, .28);
  --gold-subtle: rgba(201, 168, 76, .07);

  /* Dark backgrounds */
  --bg:          #060301;
  --bg-alt:      #0C0702;
  --surface:     #100804;
  --card:        #160B03;
  --card-hover:  #1D1005;
  --border:      #231406;
  --border-gold: rgba(201,168,76,.18);

  /* Text */
  --cream:       #F7EAD0;
  --cream-dim:   #C4A878;
  --muted:       #6B5540;
  --white:       #FFFFFF;

  /* Accent */
  --red:         #7A1414;

  /* Typography */
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-accent:   'Cinzel', serif;
  --ff-body:     'Lato', system-ui, sans-serif;
  --ff-arabic:   'Noto Naskh Arabic', serif;

  /* Radius */
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Motion */
  --ease:        cubic-bezier(.22, 1, .36, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --transition:  all .36s var(--ease);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── Shared typography ───────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--ff-accent);
  font-size: .68rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold-light); }

h2, .h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--gold); }

.prose {
  color: var(--cream-dim);
  font-size: 1.02rem;
  line-height: 1.95;
  margin-bottom: 1.2rem;
}
.prose strong { color: var(--gold-light); font-weight: 700; }

.section-head  { text-align: center; margin-bottom: 80px; }
.section-desc  { color: var(--cream-dim); font-size: .97rem; max-width: 520px; margin: 10px auto 0; line-height: 1.8; }
.only-desktop  { display: none; }
@media (min-width: 640px) { .only-desktop { display: block; } }

/* ── Ornamental divider ──────────────────────────────────── */
.ornament {
  width: 100%;
  padding: 44px 0;
  display: flex;
  justify-content: center;
}
.ornament svg { width: 360px; max-width: 90%; height: 24px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #1A0900;
  padding: 17px 36px;
  border-radius: 50px;
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background-position .6s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 4px 32px rgba(201,168,76,.35), 0 0 0 1px rgba(201,168,76,.2) inset;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(201,168,76,.55), 0 0 0 1px rgba(201,168,76,.3) inset;
}
.btn-gold:active { transform: translateY(-1px); }

.btn-gold.btn-large { padding: 20px 44px; font-size: .94rem; }
.btn-gold.btn-xl    { padding: 22px 52px; font-size: 1.06rem; flex-direction: column; gap: 5px; }
.btn-phone {
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 300;
  letter-spacing: .18em;
  opacity: .75;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 17px 36px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.32);
  font-family: var(--ff-accent);
  font-size: .88rem;
  letter-spacing: .1em;
  color: var(--cream-dim);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.06);
  transform: translateY(-2px);
}

.btn-order {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #1A0900;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--ff-accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(201,168,76,.25);
}
.btn-order:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  font-family: var(--ff-accent);
  font-size: .8rem;
  letter-spacing: .07em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--gold);
  color: #1A0900;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.35);
}

/* ═══════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #3A1E02, #4A2804, #3A1E02);
  text-align: center;
  padding: 11px 20px;
  font-family: var(--ff-accent);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--cream-dim);
  position: relative;
  z-index: 110;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.topbar-inner { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.topbar strong { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 3, 1, .96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, border-color .3s;
}
.nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,.7);
  border-color: var(--border-gold);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  gap: 10px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-img {
  height: 38px;
  width: auto;
  opacity: 0.92;
  flex-shrink: 0;
  border-radius: 50%;
}
.logo-ar   { font-family: var(--ff-arabic); font-size: 1.35rem; color: var(--gold); line-height: 1; }
.logo-en   {
  font-family: var(--ff-accent);
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .22em;
  display: block;
}
.logo-city {
  font-family: var(--ff-body);
  font-size: .55rem;
  color: var(--muted);
  letter-spacing: .38em;
  text-transform: uppercase;
  display: block;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1A0900;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: var(--ff-accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(201,168,76,.25);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,.45);
}

/* ── Nav structure helpers ───────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-link {
  font-family: var(--ff-accent);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--muted);
  padding: 5px 0;
  transition: color .2s;
}
.nav-link:hover { color: var(--gold); }

/* ── Hamburger button ────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: var(--gold-dim); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 75% at 50% -5%,  #4A2208 0%, transparent 62%),
    radial-gradient(ellipse 70%  55% at 88% 18%,  rgba(140,28,28,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50%  50% at 10% 82%,  rgba(120,70,10,.15) 0%, transparent 52%),
    linear-gradient(180deg, #0A0501 0%, #060301 100%);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .46;
  filter: saturate(1.15) brightness(.72);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,3,1,.15)  0%,
    rgba(6,3,1,.0)   25%,
    rgba(6,3,1,.5)   68%,
    rgba(6,3,1,1)    100%
  );
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 24%, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-tiles {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 9l4.5 10 10-4.5-4.5 10 10 5-10 4.5 4.5 10-10-4.5-4.5 10-4.5-10-10 4.5 4.5-10-10-5 10-4.5-4.5-10 10 4.5z' fill='%23C9A84C' fill-opacity='.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 28px 100px;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.hero-pill {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(201,168,76,.28);
  background: rgba(201,168,76,.07);
  color: var(--gold-light);
  padding: 9px 24px;
  border-radius: 50px;
  font-family: var(--ff-accent);
  font-size: .68rem;
  letter-spacing: .26em;
  margin-bottom: 44px;
  white-space: nowrap;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: .1s;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot 2.6s ease-in-out infinite;
}
@keyframes dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}

.hero-heading {
  margin-bottom: 28px;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: .25s;
}
.h-arabic {
  display: block;
  font-family: var(--ff-arabic);
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  color: var(--gold);
  opacity: .8;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.h-top {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -.01em;
}
.h-gold {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  font-weight: 700;
  line-height: 1.06;
  background: linear-gradient(90deg,
    var(--gold-dim)   0%,
    var(--gold)       25%,
    var(--gold-light) 50%,
    var(--gold)       75%,
    var(--gold-dim)   100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite, fadeUp 1s var(--ease-out) .25s both;
}
@keyframes shimmer {
  to { background-position: -250% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp 1s var(--ease-out) .4s both;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong { color: var(--gold-light); font-weight: 700; }

.hero-notice {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(80,44,6,.22);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  margin-bottom: 48px;
  text-align: left;
  max-width: 500px;
  width: 100%;
  animation: fadeUp 1s var(--ease-out) .55s both;
}
.notice-clock { font-size: 1.7rem; flex-shrink: 0; }
.notice-text  { display: flex; flex-direction: column; gap: 4px; }
.notice-text b    { color: var(--gold-light); font-family: var(--ff-accent); font-size: .84rem; letter-spacing: .04em; }
.notice-text span { color: var(--cream-dim); font-size: .8rem; line-height: 1.5; }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) .7s both;
}

.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: .82rem;
  color: var(--gold-dim);
  letter-spacing: .04em;
  opacity: .9;
  animation: fadeUp 1s var(--ease-out) .9s both;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--ff-accent);
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  35%,65% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 36px 0;
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 44px;
  text-align: center;
}
.trust-item b    {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.trust-item span {
  font-family: var(--ff-accent);
  font-size: .64rem;
  color: var(--cream-dim);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trust-sep { width: 1px; height: 44px; background: var(--border-gold); flex-shrink: 0; }
.trust-sub {
  text-align: center;
  margin-top: 18px;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════
   STORY
═══════════════════════════════════════════════════════ */
.story { padding: 20px 0 120px; background: var(--bg); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.story-visual { position: relative; }
.story-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--border-gold);
}
.story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.story-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 38%, #4A2308 0%, #1C0C02 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pot-emoji { font-size: 8rem; opacity: .28; filter: drop-shadow(0 0 40px rgba(201,168,76,.4)); }
.story-tag {
  position: absolute;
  bottom: 26px;
  right: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1A0900;
  padding: 14px 22px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--ff-display);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
  z-index: 2;
}
.story-tag b     { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.story-tag small { display: block; font-size: .72rem; font-style: italic; margin-top: 2px; }
.story-orb {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-dark), transparent 70%);
  opacity: .2;
  z-index: -1;
}

.story-copy { padding-right: 10px; }
.story-feats { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.story-feats li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.story-feats li:hover {
  border-color: var(--border-gold);
  background: rgba(201,168,76,.05);
  transform: translateX(4px);
}
.feat-ico { font-size: 1.6rem; flex-shrink: 0; }
.story-feats strong { display: block; color: var(--cream); font-size: .9rem; margin-bottom: 3px; }
.story-feats span   { color: var(--muted); font-size: .8rem; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════ */
.menu { padding: 0 0 120px; background: var(--bg-alt); }
.menu .ornament { padding-top: 0; padding-bottom: 0; margin-bottom: 8px; }
.menu .section-head { padding-top: 40px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow:
    0 24px 64px rgba(0,0,0,.6),
    0 0 0 1px rgba(201,168,76,.2),
    0 0 60px rgba(201,168,76,.06);
}
.card--featured {
  border-color: rgba(201,168,76,.32);
  box-shadow: 0 0 0 1px rgba(201,168,76,.1);
}

.card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #120905;
  aspect-ratio: auto;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,3,1,.08) 0%,
    rgba(6,3,1,.05) 40%,
    rgba(6,3,1,.52) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.card-img img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  object-position: center;
  z-index: 1;
}
.card:hover .card-img img { transform: scale(1.08); }

.card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.card-bg--solo    { background: radial-gradient(ellipse at 50% 42%, #522A0A 0%, #220B00 88%); }
.card-bg--duo     { background: radial-gradient(ellipse at 50% 42%, #422E0A 0%, #1A1000 88%); }
.card-bg--famille { background: radial-gradient(ellipse at 50% 42%, #32220A 0%, #140900 88%); }

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #1A0900;
  padding: 5px 14px;
  border-radius: 50px;
  font-family: var(--ff-accent);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .08em;
  z-index: 3;
}
.card-badge--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.card-badge--dark { background: var(--gold-dark); color: var(--cream); }

.card-body {
  padding: 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.card-tag {
  font-family: var(--ff-body);
  font-size: .7rem;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 400;
}
.card-tagline {
  color: var(--cream-dim);
  font-size: .9rem;
  line-height: 1.65;
  font-style: italic;
}
.card-includes { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-includes li { font-size: .83rem; color: var(--muted); line-height: 1.5; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-gold);
  margin-top: 6px;
  gap: 12px;
}
.card-price {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.menu-event {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex-wrap: wrap;
}
.menu-event > span { font-size: 1.5rem; flex-shrink: 0; }
.menu-event p { flex: 1; color: var(--cream-dim); font-size: .95rem; line-height: 1.7; }
.menu-event strong { color: var(--cream); }

/* ═══════════════════════════════════════════════════════
   PRICING — Card Menu
═══════════════════════════════════════════════════════ */
.pricing {
  background: var(--bg-alt);
  padding: 80px 0 100px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card shell */
.pc {
  background: var(--card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.22);
  border-color: rgba(201,168,76,.38);
}

/* Image */
.pc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
  display: block;
}
.pc:hover .pc-img img { transform: scale(1.07); }
.pc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(22,11,3,.78));
  pointer-events: none;
}

/* Badge */
.pc-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--ff-accent);
  font-size: .5rem;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-badge--hot {
  background: var(--gold);
  color: #060301;
}
.pc-badge--special {
  background: rgba(201,168,76,.14);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Body */
.pc-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pc-title {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0;
}
.pc-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Feature list */
.pc-feats {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.pc-feats li {
  font-size: .77rem;
  color: var(--cream-dim);
  line-height: 1.4;
}

/* Card footer: price + CTA */
.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(201,168,76,.1);
  gap: 10px;
}
.pc-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.pc-from {
  font-family: var(--ff-accent);
  font-size: .48rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}
.pc-amount {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 1100px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing { padding: 56px 0 72px; }
}
@media (max-width: 680px) {
  .pricing-cards { grid-template-columns: 1fr; gap: 20px; }
  .pc-img { height: 180px; }
  .pc-body { padding: 18px 18px 16px; }
  .pc-title { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════
   HOW TO ORDER
═══════════════════════════════════════════════════════ */
.how { padding: 20px 0 120px; background: var(--bg); }
.how .ornament { padding-top: 0; padding-bottom: 0; margin-bottom: 8px; }
.how .section-head { padding-top: 40px; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  gap: 8px;
}
.step {
  flex: 1;
  min-width: 190px;
  max-width: 260px;
  text-align: center;
  padding: 32px 20px;
}
.step-num  {
  font-family: var(--ff-accent);
  font-size: 3rem;
  color: rgba(201,168,76,.09);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 18px; }
.step h3   {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step p    { color: var(--cream-dim); font-size: .88rem; line-height: 1.7; }
.step p strong { color: var(--gold-light); font-weight: 700; }
.step-arrow { font-size: 2rem; color: var(--gold-dark); padding-top: 56px; flex-shrink: 0; opacity: .5; }

.warning-box {
  background: linear-gradient(135deg, rgba(140,28,28,.1), rgba(92,61,10,.14));
  border: 1px solid rgba(201,168,76,.22);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin-bottom: 56px;
}
.warning-inner { display: flex; gap: 20px; align-items: flex-start; }
.warning-icon  { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.warning-box strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--ff-accent);
  font-size: .88rem;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.warning-box p { color: var(--cream-dim); font-size: .9rem; line-height: 1.8; }
.warning-box p strong {
  color: var(--cream);
  display: inline;
  font-family: var(--ff-body);
  font-size: inherit;
  letter-spacing: 0;
}

.how-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════ */
.why { padding: 120px 0; background: var(--surface); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.why-card {
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.why-card:hover {
  border-color: var(--border-gold);
  background: rgba(201,168,76,.04);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 2.6rem; margin-bottom: 18px; }
.why-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p  { color: var(--muted); font-size: .88rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════ */
.reviews { padding: 0 0 120px; background: var(--bg); }
.reviews .ornament { padding-top: 0; padding-bottom: 0; margin-bottom: 8px; }
.reviews .section-head { padding-top: 48px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review--wide { grid-column: 1 / -1; max-width: 580px; margin-inline: auto; }

.review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}
.review::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold-dark);
  opacity: .3;
  line-height: 1;
  pointer-events: none;
}
.review:hover { border-color: var(--border-gold); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.review--featured {
  border-color: rgba(201,168,76,.3);
  background: linear-gradient(160deg, rgba(201,168,76,.07) 0%, var(--card) 60%);
}

.review-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
  padding-top: 14px;
}
.review > p   {
  color: var(--cream-dim);
  font-size: .9rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), #3A1E02);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}
.review-author strong { display: block; color: var(--cream); font-size: .88rem; }
.review-author span   { color: var(--muted); font-size: .76rem; }

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.cta-stage {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 140% 140% at 50% 50%, #341608 0%, #100601 55%, #060301 100%);
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: .17;
  filter: saturate(1.3) brightness(.55);
  z-index: 0;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 30% 80%, rgba(201,168,76,.05) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 70% 20%, rgba(201,168,76,.05) 0%, transparent 55%);
}
.cta-tiles {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 9l4.5 10 10-4.5-4.5 10 10 5-10 4.5 4.5 10-10-4.5-4.5 10-4.5-10-10 4.5 4.5-10-10-5 10-4.5-4.5-10 10 4.5z' fill='%23C9A84C' fill-opacity='.04'/%3E%3C/svg%3E");
}
.cta-body { position: relative; z-index: 2; text-align: center; }
.cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-sub {
  color: var(--cream-dim);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 56px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Pulsing glow on CTA button */
.btn-gold.btn-xl {
  animation: ctaPulse 3.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 48px rgba(201,168,76,.4), 0 0 0 1px rgba(201,168,76,.2) inset; }
  50%       { box-shadow: 0 12px 64px rgba(201,168,76,.6), 0 0 0 1px rgba(201,168,76,.3) inset; }
}
.btn-gold.btn-xl:hover {
  animation: none;
  box-shadow: 0 16px 72px rgba(201,168,76,.7), 0 0 0 1px rgba(201,168,76,.4) inset;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-gold);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 52px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.f-ar   { font-family: var(--ff-arabic); font-size: 1.2rem; color: var(--gold); }
.f-name {
  font-family: var(--ff-accent);
  font-size: 1rem;
  letter-spacing: .2em;
  color: var(--cream);
  margin-bottom: 12px;
  display: block;
}
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.footer-col h4  {
  font-family: var(--ff-accent);
  font-size: .66rem;
  color: var(--gold);
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p   { color: var(--cream-dim); font-size: .88rem; margin-bottom: 8px; }
.footer-col a   { color: var(--gold); transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: var(--muted); font-size: .8rem; }
.f-tagline { font-family: var(--ff-arabic); color: var(--gold-dark) !important; font-size: .9rem !important; }

/* ═══════════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════════════ */
.wa-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.wa-bubble {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 18px 18px 4px 18px;
  padding: 18px 20px;
  max-width: 230px;
  box-shadow: 0 12px 48px rgba(0,0,0,.65);
  font-size: .86rem;
  line-height: 1.6;
  color: var(--cream-dim);
  opacity: 0;
  transform: translateY(12px) scale(.93);
  pointer-events: none;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  position: relative;
}
.wa-bubble.open { opacity: 1; transform: none; pointer-events: auto; }
.wa-bubble p    { margin-bottom: 12px; }
.wa-bubble strong { color: var(--cream); }
.wa-bubble a {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-family: var(--ff-accent);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: background .2s;
}
.wa-bubble a:hover { background: #1db954; }
.wa-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .85rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
.wa-close:hover { color: var(--cream); }

.wa-fab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 15px 22px 15px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 28px rgba(37,211,102,.4), 0 0 0 6px rgba(37,211,102,.08);
  font-family: var(--ff-accent);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: var(--transition);
}
.wa-fab:hover {
  background: #1db954;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,211,102,.55), 0 0 0 8px rgba(37,211,102,.1);
}
.wa-label { display: none; }
@media (min-width: 560px) { .wa-label { display: inline; } }

/* ═══════════════════════════════════════════════════════
   ARABIC ACCENT ELEMENTS
═══════════════════════════════════════════════════════ */
.h-arabic-sub {
  display: block;
  font-family: var(--ff-arabic);
  font-size: clamp(.88rem, 1.8vw, 1.18rem);
  color: var(--gold-dim);
  margin-bottom: 10px;
  opacity: .72;
  direction: rtl;
  animation: fadeUp 1s var(--ease-out) .22s both;
}
.arabic-quote {
  font-family: var(--ff-arabic);
  font-size: clamp(.98rem, 1.9vw, 1.15rem);
  color: var(--gold);
  line-height: 2;
  margin-bottom: 1.1rem;
  padding: 14px 20px;
  border-right: 3px solid var(--gold-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(201,168,76,.05);
  direction: rtl;
  text-align: right;
  opacity: .88;
}
.section-ar {
  font-family: var(--ff-arabic);
  font-size: .88rem;
  color: var(--gold-dim);
  margin-top: 10px;
  opacity: .7;
  direction: rtl;
}
.cta-ar {
  font-family: var(--ff-arabic);
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  color: var(--gold);
  opacity: .88;
  margin-bottom: 6px;
  direction: rtl;
}
.bubble-ar {
  font-family: var(--ff-arabic);
  font-size: .78rem;
  color: var(--gold-dim);
  text-align: right;
  direction: rtl;
  margin-top: 4px;
  opacity: .75;
}

/* ═══════════════════════════════════════════════════════
   HERO PULL QUOTE — sensory sub-headline
═══════════════════════════════════════════════════════ */
.hero-pull {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.08rem, 2.4vw, 1.42rem);
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease-out) .38s both;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-pull em { font-style: normal; color: var(--gold-light); font-weight: 700; }

/* ═══════════════════════════════════════════════════════
   MID-PAGE CTA BAND
═══════════════════════════════════════════════════════ */
.mid-cta {
  position: relative;
  padding: 68px 0;
  background: linear-gradient(135deg, #1E0C02 0%, #3C1C06 40%, #2A1004 70%, #1E0C02 100%);
  border-top: 1px solid rgba(201,168,76,.22);
  border-bottom: 1px solid rgba(201,168,76,.22);
  overflow: hidden;
}
.mid-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mid-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: .12;
  filter: saturate(1.6) brightness(.45);
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 9l4.5 10 10-4.5-4.5 10 10 5-10 4.5 4.5 10-10-4.5-4.5 10-4.5-10-10 4.5 4.5-10-10-5 10-4.5-4.5-10 10 4.5z' fill='%23C9A84C' fill-opacity='.04'/%3E%3C/svg%3E");
}
.mid-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 65%);
}
.mid-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.mid-cta-left { flex: 1; min-width: 260px; }
.mid-cta-label {
  font-family: var(--ff-accent);
  font-size: .66rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mid-cta-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot 2.6s ease-in-out infinite;
}
.mid-cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}
.mid-cta-heading em { font-style: italic; color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   URGENCY BAND — limited quantity
═══════════════════════════════════════════════════════ */
.urgency-band {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(140,28,28,.12), rgba(100,60,8,.16));
  border: 1px solid rgba(201,168,76,.26);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-bottom: 52px;
}
.urgency-icon { font-size: 2rem; flex-shrink: 0; line-height: 1.2; }
.urgency-band strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--ff-accent);
  font-size: .86rem;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.urgency-band p { color: var(--cream-dim); font-size: .9rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   REVIEW AGGREGATE METRIC
═══════════════════════════════════════════════════════ */
.review-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.review-metric-score {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.review-metric-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-metric-stars {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 3px;
}
.review-metric-right strong {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--cream);
  display: block;
}
.review-metric-right p { color: var(--muted); font-size: .85rem; }
.review-metric-divider {
  width: 1px;
  height: 80px;
  background: var(--border-gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.in, .reveal-left.in, .reveal-right.in {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════════════════ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
}
.lang-switch a {
  font-family: var(--ff-accent);
  font-size: .66rem;
  letter-spacing: .1em;
  color: var(--muted);
  padding: 5px 9px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.lang-switch a:hover  { color: var(--gold); }
.lang-switch a.active { color: var(--gold); background: rgba(201,168,76,.1); }
.lang-switch .sep     { color: var(--border); font-size: .6rem; }

html[dir="rtl"] .lang-switch { margin-right: 0; margin-left: 16px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid .card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .why-grid  { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Mobile navbar ── */
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 3, 1, .98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px 36px;
    gap: 28px;
    display: none;
    z-index: 98;
    box-shadow: 0 16px 48px rgba(0,0,0,.7);
  }
  .nav-links.open { display: flex; }
  html[dir="rtl"] .nav-links { align-items: flex-end; }
  .nav-links .lang-switch { margin-right: 0; margin-left: 0; }
  .nav-links .lang-switch a { font-size: .78rem; padding: 8px 14px; }
  .nav-links .nav-link { font-size: .85rem; letter-spacing: .18em; color: var(--cream-dim); }

  /* ── Hero ── */
  .hero-body { padding: 40px 20px 40px; }
  .hero-pill {
    margin-bottom: 15px;
    font-size: .64rem;
    padding: 9px 20px;
    letter-spacing: .15em;
    white-space: nowrap;
  }
  .hero-heading { margin-top: 0; margin-bottom: 12px; line-height: 1.3; }
  .h-top  { font-size: clamp(1.75rem, 7vw, 3.2rem); }
  .h-gold { font-size: clamp(1.6rem, 6.5vw, 3rem); }
  .hero-sub { font-size: .88rem; margin-top: 0; margin-bottom: 14px; }
  .hero-actions { gap: 10px; flex-direction: column; align-items: center; }

  /* ── WhatsApp float ── */
  .wa-wrap { bottom: 90px; right: 16px; }
  .wa-fab  { padding: 14px; border-radius: 50%; }
  .wa-label { display: none !important; }

  /* ── Layout ── */
  .story-grid   { grid-template-columns: 1fr; gap: 48px; }
  .story-copy   { padding-right: 0; }
  .menu-grid    { grid-template-columns: 1fr; }
  .menu-grid .card:last-child { grid-column: auto; max-width: none; margin: 0; }
  .why-grid     { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step  { max-width: 300px; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-sep  { display: none; }
  .warning-inner { flex-direction: column; gap: 12px; }
  .menu-event { flex-direction: column; text-align: center; align-items: center; }
  .mid-cta-inner { flex-direction: column; text-align: center; }
  .mid-cta-left { text-align: center; }
  .mid-cta-label { justify-content: center; }
  .urgency-band { flex-direction: column; gap: 12px; }
  .review-metric { flex-direction: column; gap: 16px; }
  .review-metric-divider { display: none; }
  .review-metric-right { align-items: center; text-align: center; }
  .ornament svg { width: 260px; }
  .story { padding-bottom: 88px; }
  .menu  { padding-bottom: 88px; }
  .how   { padding-bottom: 88px; }
  .why   { padding: 88px 0; }
  .reviews { padding-bottom: 88px; }
  .final-cta { padding: 100px 0; }
  .review::before { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤480px
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }
  .logo-city { display: none; }
  .topbar { font-size: .68rem; }
  .hero-notice { padding: 14px 18px; }
  .card-body { padding: 22px 20px; }
  .review { padding: 28px 24px; }
  .why-card { padding: 28px 22px; }
  .hero-pill {
    font-size: .56rem;
    letter-spacing: .08em;
    padding: 8px 14px;
    margin-bottom: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   FOOD IMAGES — Cinematic inserts & full-width bands
═══════════════════════════════════════════════════════ */

/* ── Hero image overlay ────────────────────────────── */
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .38;
  filter: saturate(1.1) brightness(.8);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,3,1,.25) 0%,
    rgba(6,3,1,.55) 55%,
    rgba(6,3,1,.92) 100%
  );
}

/* ── Section image divider (full-width cinematic band) */
.img-divider {
  width: 100%;
  height: clamp(240px, 32vw, 480px);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.img-divider img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.72) saturate(1.15);
  transition: transform 6s ease;
}
.img-divider:hover img { transform: scale(1.04); }
.img-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,3,1,.55) 0%,
    transparent 35%,
    transparent 65%,
    rgba(6,3,1,.65) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-divider-caption {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(247,234,208,.85);
  text-align: center;
  padding: 0 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,.7);
  letter-spacing: .02em;
}

/* ── Inline section image (beside text) ───────────── */
.section-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.section-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.88) saturate(1.1);
  transition: transform .7s var(--ease), filter .5s ease;
}
.section-img:hover img {
  transform: scale(1.03);
  filter: brightness(.96) saturate(1.2);
}
.section-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,.18);
  pointer-events: none;
}

/* ── Gallery section ──────────────────────────────── */
.gallery {
  padding: 120px 0 100px;
  background: var(--bg-alt);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.gallery-head {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 12px;
}
.gallery-head p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Masonry-style CSS grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease), filter .5s ease;
  filter: brightness(.82) saturate(1.1);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.95) saturate(1.25);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,3,1,.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* All items are square — tall/wide classes no longer expand */
.gallery-item--tall { grid-row: span 1; }
.gallery-item--wide { grid-column: span 1; }

/* Gold border accent on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(201,168,76,0);
  transition: box-shadow .4s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover::before {
  box-shadow: inset 0 0 0 2px rgba(201,168,76,.45);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery { padding: 80px 0 72px; }
}

/* ═══════════════════════════════════════════════════════
   POLISH — Premium animations & micro-interactions
═══════════════════════════════════════════════════════ */

/* ── Hero Ken Burns ─────────────────────────────────── */
@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.1); }
}
.hero-img {
  animation: kenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}

/* ── Topbar scanning line ───────────────────────────── */
.topbar { overflow: hidden; }
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100%; top: 0;
  width: 40%;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,168,76,.12),
    transparent
  );
  animation: topbarScan 6s linear infinite;
}
@keyframes topbarScan {
  to { left: 200%; }
}

/* ── Button shimmer sweep ───────────────────────────── */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,.22) 50%,
    transparent 70%
  );
  transform: skewX(-18deg);
  transition: left .8s var(--ease);
  border-radius: inherit;
}
.btn-gold:hover::after { left: 160%; }
.btn-gold:active { transform: translateY(-1px) scale(.98); }
.btn-ghost:hover { letter-spacing: .12em; }

/* ── Scroll reveal — smoother stagger ──────────────── */
.reveal, .reveal-left, .reveal-right {
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-delay="80"]  { transition-delay: 80ms;  }
[data-delay="120"] { transition-delay: 120ms; }
[data-delay="140"] { transition-delay: 140ms; }
[data-delay="160"] { transition-delay: 160ms; }
[data-delay="240"] { transition-delay: 240ms; }
[data-delay="280"] { transition-delay: 280ms; }
[data-delay="320"] { transition-delay: 320ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* ── Story frame hover glow + photo zoom ───────────── */
.story-frame {
  transition: box-shadow .7s var(--ease);
}
.story-photo {
  transition: transform 1.4s var(--ease-out);
}
.story-visual:hover .story-frame {
  box-shadow:
    0 0 0 2px rgba(201,168,76,.35),
    0 28px 80px rgba(201,168,76,.14),
    0 8px 24px rgba(0,0,0,.5);
}
.story-visual:hover .story-photo {
  transform: scale(1.05);
}

/* ── Cards — richer hover ───────────────────────────── */
.card {
  transition:
    transform .55s var(--ease),
    border-color .4s ease,
    box-shadow .55s var(--ease),
    background-color .4s ease;
  will-change: transform;
}
.card:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow:
    0 32px 80px rgba(0,0,0,.65),
    0 0 0 1px rgba(201,168,76,.22),
    0 0 60px rgba(201,168,76,.08);
}
.card:hover .card-img img {
  transform: scale(1.1);
  filter: brightness(.95) saturate(1.2);
  transition: transform 1s var(--ease-out), filter .7s ease;
}
.card-img img {
  transition: transform .9s var(--ease-out), filter .7s ease;
}

/* Featured card ambient pulse */
.card--featured {
  animation: featuredGlow 4.5s ease-in-out infinite;
}
.card--featured:hover { animation: none; }
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(201,168,76,.12); }
  50%       { box-shadow: 0 0 32px 4px rgba(201,168,76,.12), 0 0 0 1px rgba(201,168,76,.28); }
}

/* ── Gallery items ─────────────────────────────────── */
.gallery-item {
  cursor: zoom-in;
  transition: box-shadow .5s var(--ease);
}
.gallery-item img {
  transition: transform 1s var(--ease-out), filter .7s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(.88) saturate(1.35) contrast(1.04);
}
.gallery-item:hover::before {
  box-shadow: inset 0 0 0 2px rgba(201,168,76,.5);
}

/* ── Image dividers — caption drift ────────────────── */
.img-divider-caption {
  transition: letter-spacing .8s var(--ease), opacity .5s ease, transform .8s var(--ease);
}
.img-divider:hover .img-divider-caption {
  letter-spacing: .05em;
}
.img-divider img {
  transition: transform 8s ease;
}
.img-divider:hover img { transform: scale(1.05); }

/* ── Why cards — icon bounce ────────────────────────── */
.why-card {
  transition:
    transform .5s var(--ease),
    border-color .4s ease,
    box-shadow .5s var(--ease),
    background-color .4s ease;
}
.why-icon {
  display: inline-block;
  transition: transform .55s var(--ease-spring);
}
.why-card:hover .why-icon {
  transform: scale(1.25) rotate(-8deg);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(201,168,76,.15);
}

/* ── Review cards — lift + quote mark float ────────── */
.review {
  transition:
    transform .5s var(--ease),
    border-color .35s ease,
    box-shadow .5s var(--ease);
}
.review:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 52px rgba(0,0,0,.42), 0 0 0 1px rgba(201,168,76,.1);
}
.review::before {
  transition: transform .6s var(--ease), opacity .5s ease;
}
.review:hover::before {
  transform: translateY(-10px) scale(1.1);
  opacity: .5;
}

/* ── Trust bar hover ────────────────────────────────── */
.trust-item {
  transition: transform .4s var(--ease);
}
.trust-item:hover { transform: translateY(-3px); }
.trust-item b { transition: color .35s ease; }
.trust-item:hover b { color: var(--gold-light); }

/* ── Steps hover ────────────────────────────────────── */
.step { transition: transform .45s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step-icon { transition: transform .55s var(--ease-spring); }
.step:hover .step-icon { transform: scale(1.18); }

/* ── Logo hover ─────────────────────────────────────── */
.logo { transition: opacity .35s ease; }
.logo:hover { opacity: .82; }
.logo-en { transition: color .35s ease; }
.logo:hover .logo-en { color: var(--gold); }

/* ── Nav CTA ripple ─────────────────────────────────── */
.nav-cta { overflow: hidden; }
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-cta:hover::after { transform: scaleX(1); }

/* ── WhatsApp FAB pulse ─────────────────────────────── */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 32px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 10px 48px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.08); }
}
.wa-fab { animation: waPulse 3s ease-in-out infinite; }
.wa-fab:hover { animation: none; }

/* ── CTA section — shimmer on heading ──────────────── */
.cta-heading em {
  background: linear-gradient(90deg,
    var(--gold-dim) 0%,
    var(--gold) 25%,
    var(--gold-light) 50%,
    var(--gold) 75%,
    var(--gold-dim) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ── Image placeholders (pending real tanjia photos) ── */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,.07) 0%, rgba(18,12,4,.97) 100%);
  z-index: 1;
}
.img-placeholder-pot { font-size: 2rem; opacity: .45; }
.img-placeholder-label {
  color: var(--gold-dim);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.65;
  opacity: .5;
  max-width: 170px;
}

/* ── Reduce motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM LUXURY LAYER — Spacing · Typography · Motion
═══════════════════════════════════════════════════════ */

/* ── 1. Section breathing room ───────────────────────── */
.story    { padding: 120px 0 150px; }
.how      { padding: 80px 0 150px; }
.why      { padding: 150px 0; }
.gallery  { padding: 150px 0 120px; }
.reviews  { padding: 0 0 150px; }
.trust    { padding: 48px 0; }
.ornament { padding: 60px 0; }

.section-head  { margin-bottom: 100px; }
.section-desc  { font-size: 1rem; max-width: 560px; line-height: 1.85; }
.prose         { font-size: 1.04rem; line-height: 2; margin-bottom: 1.6rem; }
.story-feats   { gap: 20px; margin-top: 48px; }
.story-feats li { padding: 22px 24px; }
.how-cta       { margin-top: 72px; }

/* ── 2. Typography hierarchy ─────────────────────────── */
h2, .h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  margin-bottom: 20px;
}
.hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.08;
}

/* ── 3. Button premium feel ──────────────────────────── */
.btn-gold {
  padding: 18px 40px;
  transition:
    background-position .7s var(--ease),
    transform .4s var(--ease),
    box-shadow .4s var(--ease);
}
.btn-gold:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 56px rgba(201,168,76,.6), 0 0 0 1px rgba(201,168,76,.35) inset;
}
.btn-gold.btn-large { padding: 22px 48px; font-size: .96rem; }
.btn-gold.btn-xl    { padding: 24px 56px; font-size: 1.08rem; }

.btn-ghost {
  padding: 18px 40px;
  transition: border-color .4s ease, color .4s ease, background .4s ease, transform .4s var(--ease);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  letter-spacing: .1em;
  box-shadow: 0 0 24px rgba(201,168,76,.12);
}

.btn-order {
  transition: background .4s ease, transform .4s var(--ease), box-shadow .4s ease;
}
.btn-order:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(201,168,76,.45);
}

/* ── 4. Scroll reveal — softer & more elegant ────────── */
.reveal       { transform: translateY(22px); }
.reveal-left  { transform: translateX(-26px); }
.reveal-right { transform: translateX(26px); }
.reveal, .reveal-left, .reveal-right {
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
[data-delay="80"]  { transition-delay: 100ms; }
[data-delay="120"] { transition-delay: 150ms; }
[data-delay="140"] { transition-delay: 180ms; }
[data-delay="160"] { transition-delay: 200ms; }
[data-delay="240"] { transition-delay: 280ms; }
[data-delay="280"] { transition-delay: 340ms; }
[data-delay="320"] { transition-delay: 400ms; }
[data-delay="400"] { transition-delay: 480ms; }

/* ── 5. Visual balance & card refinement ─────────────── */
.review        { padding: 40px 36px; }
.why-card      { padding: 42px 32px; }
.review-metric { padding: 36px 44px; gap: 40px; }

.card:hover {
  transform: translateY(-12px) scale(1.014);
  box-shadow:
    0 40px 90px rgba(0,0,0,.7),
    0 0 0 1px rgba(201,168,76,.25),
    0 0 70px rgba(201,168,76,.1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 56px rgba(0,0,0,.5),
    0 0 0 1px rgba(201,168,76,.2);
}

/* Subtle separator line between major sections */
.story::before,
.why::before,
.reviews::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4), transparent);
  margin: 0 auto 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .story   { padding: 80px 0 100px; }
  .how     { padding: 60px 0 100px; }
  .why     { padding: 100px 0; }
  .gallery { padding: 100px 0 80px; }
  .reviews { padding: 0 0 100px; }
  .section-head { margin-bottom: 64px; }
  h2, .h2  { font-size: clamp(2rem, 6vw, 3rem); }
  .review  { padding: 32px 26px; }
  .why-card { padding: 32px 24px; }
}

/* ===== HERO AR IMPROVEMENT ===== */


[dir="rtl"] .hero-pill {
  font-size: 17px;
  padding: 14px 32px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  word-spacing: 3px;

   display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 8px;
}

[dir="rtl"] .hero-pill span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

[dir="rtl"] .hero-heading {
  line-height: 1.4;
}

[dir="rtl"] .hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
}

[dir="rtl"] .btn-ghost {
  border: 1.5px solid rgba(201,168,76,0.5);
  font-size: 0.95rem;
}

[dir="rtl"] .pill-dot {
  width: 8px;
  height: 8px;
  margin-left: 10px;
}

[dir="rtl"] .hero-heading {
  letter-spacing: -0.2px;
}

[dir="rtl"] .btn-gold {
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  [dir="rtl"] .hero-pill {
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.5;
  }

  [dir="rtl"] .hero-sub {
    font-size: 1rem;
  }

  [dir="rtl"] .btn-gold {
    font-size: 0.95rem;
    padding: 14px 22px;
  }
}

/* ═══════════════════════════════════════════════════════
   WEIGHT SELECTION MODAL
═══════════════════════════════════════════════════════ */

/* Reset native button styles */
button.btn-gold,
button.btn-order {
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Overlay */
.wm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(6, 3, 1, 0.84);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.wm-overlay.wm-open {
  opacity: 1;
  pointer-events: all;
}

/* Panel */
.wm-panel {
  width: 100%;
  max-width: 540px;
  background: linear-gradient(180deg, #1e0f06 0%, #140803 100%);
  border: 1px solid rgba(201, 168, 76, .22);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  padding: 0 24px 48px;
  transform: translateY(52px);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.wm-panel::-webkit-scrollbar { display: none; }
.wm-overlay.wm-open .wm-panel { transform: translateY(0); }

/* Drag handle */
.wm-drag {
  width: 40px;
  height: 4px;
  background: rgba(201, 168, 76, .2);
  border-radius: 2px;
  margin: 16px auto 24px;
}

/* Header */
.wm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.wm-eyebrow {
  font-family: var(--ff-accent);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
  margin: 0 0 6px;
}
.wm-product {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0;
  line-height: 1.25;
}
.wm-close {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream-dim);
  font-size: .8rem;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.wm-close:hover {
  background: rgba(201, 168, 76, .12);
  border-color: rgba(201, 168, 76, .35);
  color: var(--gold);
}

/* Weight list */
.wm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wm-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid rgba(201, 168, 76, .13);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .18s;
  background: rgba(201, 168, 76, .025);
  user-select: none;
  outline: none;
}
.wm-item:hover {
  border-color: rgba(201, 168, 76, .36);
  background: rgba(201, 168, 76, .055);
  transform: translateX(-3px);
}
.wm-item:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, .3);
}
.wm-item.wm-selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .09);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, .18) inset;
}
.wm-item-weight {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
}
.wm-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wm-item-price {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s;
}
.wm-item.wm-selected .wm-item-price { color: var(--gold); }
.wm-item-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.wm-item-check svg { display: none; }
.wm-item.wm-selected .wm-item-check {
  background: var(--gold);
  border-color: var(--gold);
}
.wm-item.wm-selected .wm-item-check svg { display: block; }

/* CTA area */
.wm-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.wm-cta {
  width: 100%;
  justify-content: center;
  padding: 18px 24px;
  font-size: .9rem;
  gap: 10px;
}
.wm-cta:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}
.wm-hint {
  text-align: center;
  font-size: .68rem;
  color: var(--muted);
  opacity: .65;
  margin: 0;
  letter-spacing: .06em;
}

/* Desktop: centred dialog */
@media (min-width: 640px) {
  .wm-overlay {
    align-items: center;
    padding: 24px;
  }
  .wm-panel {
    border-radius: 22px;
    border-bottom: 1px solid rgba(201, 168, 76, .22);
    padding: 0 32px 40px;
  }
}

/* ═══════════════════════════════════════════════════════
   FINAL MENU / PRICING POLISH — Special Tanjia
═══════════════════════════════════════════════════════ */
.pricing-note {
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--gold-dim);
  font-size: .86rem;
  line-height: 1.65;
  padding: 14px 18px;
  border: 1px solid rgba(201,168,76,.16);
  border-radius: 999px;
  background: rgba(201,168,76,.045);
}

.pricing .section-desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards { align-items: stretch; }
.pc { height: 100%; }
.pc-body { min-height: 360px; }
.pc-foot { margin-top: auto; }
.pc .btn-order-modal {
  white-space: nowrap;
  cursor: pointer;
}
.pc-amount { white-space: nowrap; }

@media (max-width: 680px) {
  .pc-foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
  }
  .pc-price {
    align-items: center;
    text-align: center;
  }
  .pc .btn-order-modal {
    width: 100%;
    justify-content: center;
  }
  .pricing-note {
    border-radius: 18px;
    font-size: .8rem;
  }
}

/* Modal: better mobile readability */
.wm-item-price { direction: ltr; white-space: nowrap; }
.wm-item-weight { white-space: nowrap; }
@media (max-width: 420px) {
  .wm-item { padding: 13px 14px; }
  .wm-item-weight, .wm-item-price { font-size: .9rem; }
  .wm-panel { padding-left: 18px; padding-right: 18px; }
}
