/* ============================================================
   10 DIRHAM BIRYANI — stylesheet
   Bold, street-food, dum-cooked.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --bg-dark: #0a0908;
  --bg-cream: #FFF8EC;
  --bg-paper: #FAF1DD;
  --saffron: #FFB627;
  --saffron-deep: #E89400;
  --maroon: #8B1818;
  --maroon-deep: #5C0F0F;
  --text: #0a0908;
  --text-muted: #5a5550;
  --text-light: rgba(255,248,236,.92);
  --text-light-muted: rgba(255,248,236,.55);
  --border: rgba(10,9,8,.12);
  --border-light: rgba(255,248,236,.14);

  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-italic: 'Playfair Display', Georgia, serif;

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1280px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* GRAIN */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 28px;
  margin: 0 auto;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled {
  background: rgba(10,9,8,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 28px;
  border-bottom: 1px solid rgba(255,182,39,.1);
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 32px;
  background: var(--saffron);
  color: var(--bg-dark);
  padding: 6px 10px 2px;
  border-radius: 6px;
  letter-spacing: -.02em;
  line-height: 1;
}
.brand-mark.big { font-size: 64px; padding: 10px 16px 4px; }
.brand-text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .14em;
  line-height: 1;
  color: #fff;
}

.nav-links {
  display: flex; gap: 32px;
  font-weight: 500; font-size: 14px;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav-links a:hover { color: var(--saffron); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--saffron);
  transition: right .25s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  font-weight: 700; font-size: 13px;
  letter-spacing: .04em;
  background: var(--saffron);
  color: var(--bg-dark);
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform .2s, background .2s, box-shadow .25s;
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 10px 20px -6px rgba(255,182,39,.4); }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px; padding: 10px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform .25s, opacity .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 100px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: saturate(1.2) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.18); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,.7) 0%, rgba(10,9,8,.35) 40%, rgba(10,9,8,.95) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(255,182,39,.32), transparent 55%);
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,182,39,.28), transparent 60%);
  bottom: -300px; right: -200px;
  filter: blur(40px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow { to { transform: translate(-100px, -50px) scale(1.1); } }

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  font-weight: 600;
  color: var(--saffron);
  margin: 0 0 32px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -.005em;
  line-height: .85;
}
.hero-row1 { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 8px; }
.ten {
  font-size: clamp(8rem, 26vw, 22rem);
  color: var(--saffron);
  line-height: .8;
  text-shadow: 0 0 60px rgba(255,182,39,.5);
  display: block;
}
.aed {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 24px;
  align-items: flex-start;
}
.aed > span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  background: var(--maroon);
  color: #fff;
  padding: 4px 14px 0;
  border-radius: 6px;
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
  letter-spacing: .04em;
}
.aed small {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-light-muted);
  letter-spacing: 0;
  margin-left: 8px;
}
.hero-row2, .hero-row3 {
  display: block;
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: -.005em;
}
.hero-row2 { color: rgba(255,255,255,.55); }
.hero-row3 { color: #fff; }
.dot { color: var(--saffron); }

.hero-sub {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 32px 0 40px;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 60px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .25s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn.big { padding: 20px 32px; font-size: 17px; }
.btn-primary {
  background: var(--saffron);
  color: var(--bg-dark);
  box-shadow: 0 10px 30px -10px rgba(255,182,39,.6);
}
.btn-primary:hover { background: #fff; box-shadow: 0 16px 40px -10px rgba(255,255,255,.4); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
}
.btn-ghost:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-ghost-light {
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn-ghost-light:hover { background: #fff; color: var(--maroon); border-color: #fff; }
.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: var(--maroon); }
.btn-light { background: #fff; color: var(--bg-dark); }

.hero-stats {
  display: flex; gap: 64px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b {
  font-family: var(--font-display);
  font-size: 44px; line-height: 1;
  color: var(--saffron);
  letter-spacing: 0;
}
.hero-stats b i { color: var(--maroon); font-style: normal; margin-left: 4px; }
.hero-stats span {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-top: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 12px;
  z-index: 3;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 8px;
  background: var(--saffron);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue { 50% { transform: translateY(14px); opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--maroon);
  color: var(--saffron);
  border-block: 2px solid var(--saffron);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .08em;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  width: max-content;
}
.marquee-track > span { flex-shrink: 0; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.section-head.light { color: #fff; }
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--maroon);
  text-transform: uppercase;
  margin: 0 0 20px;
  padding: 6px 12px;
  border: 1.5px solid var(--maroon);
  border-radius: 999px;
}
.section-head.light .kicker { color: var(--saffron); border-color: var(--saffron); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: .98;
  margin: 0 0 20px;
  letter-spacing: -.01em;
}
.section-head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  color: var(--maroon);
}
.section-head.light h2 em { color: var(--saffron); }
.section-head .lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}
.section-head.light .lead { color: var(--text-light); }

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--bg-paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,182,39,.2), transparent 70%);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1;
  margin: 0 0 28px;
  letter-spacing: -.005em;
}
.story-text h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--maroon);
  font-weight: 700;
}
.story-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.story-text strong { color: var(--text); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--maroon);
  border-bottom: 2px solid var(--maroon);
  padding-bottom: 4px;
  margin-top: 16px;
  transition: gap .2s var(--ease), color .2s, border-color .2s;
}
.link-arrow:hover { gap: 16px; color: var(--saffron-deep); border-color: var(--saffron-deep); }

.story-images {
  position: relative;
  aspect-ratio: 1;
}
.story-images figure { margin: 0; }
.story-img-1 {
  position: absolute;
  inset: 0;
  width: 78%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10,9,8,.4);
}
.story-img-1 img { aspect-ratio: 4/5; object-fit: cover; width: 100%; height: 100%; }
.story-img-2 {
  position: absolute;
  bottom: -40px; right: 0;
  width: 56%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10,9,8,.5);
  border: 8px solid var(--bg-paper);
}
.story-img-2 img { aspect-ratio: 4/3; object-fit: cover; width: 100%; height: 100%; }
.story-badge {
  position: absolute;
  top: 30px; right: -10px;
  background: var(--bg-dark);
  color: #fff;
  width: 130px; height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: rotate(-12deg);
  z-index: 3;
  border: 3px solid var(--saffron);
  border-radius: 50%;
}
.story-badge strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--saffron);
  margin: 4px 0;
  letter-spacing: 0;
  font-weight: 400;
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background: var(--bg-dark);
  color: #fff;
  padding: 120px 0;
  position: relative;
}
.menu .section-head h2 { color: #fff; }
.menu .section-head .lead { color: var(--text-light); }
.menu .section-head h2 em { color: var(--saffron); }
.menu .kicker { color: var(--saffron); border-color: var(--saffron); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: #1a1614;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .25s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--saffron);
}
.menu-card.hero-item {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-img {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--saffron-deep), var(--maroon));
  overflow: hidden;
}
.menu-card.hero-item .menu-img { aspect-ratio: auto; }
.menu-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.menu-card:hover .menu-img img { transform: scale(1.08); }
.menu-img .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--saffron);
  color: var(--bg-dark);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}
.menu-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-body header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.menu-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0;
  letter-spacing: 0;
  line-height: 1.1;
}
.menu-body h3 .muted {
  display: block;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-light-muted);
  letter-spacing: .04em;
  margin-top: 4px;
  text-transform: uppercase;
}
.menu-card.hero-item .menu-body h3 { font-size: 38px; }
.price {
  display: flex; align-items: baseline; gap: 4px;
  flex-shrink: 0;
}
.price b {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--saffron);
  line-height: 1;
}
.menu-card.hero-item .price b { font-size: 64px; }
.price i {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: var(--saffron);
  letter-spacing: .12em;
}
.menu-body p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0 0 20px;
  flex: 1;
  line-height: 1.55;
}
.add {
  align-self: flex-start;
  padding: 10px 18px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all .2s;
}
.add:hover { background: var(--saffron); color: var(--bg-dark); border-color: var(--saffron); }

.addons {
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, #1a1614, #0a0908);
  border-radius: var(--radius);
  border: 1px solid rgba(255,182,39,.15);
}
.addons h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--saffron);
  margin: 0 0 28px;
  letter-spacing: 0;
}
.addon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px 50px;
}
.addon-list li {
  display: flex;
  align-items: baseline;
  font-size: 16px;
}
.addon-list .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,.2);
  margin: 0 12px 4px;
}
.addon-list li > span:last-child {
  color: var(--saffron);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0;
}
.addon-list li > span:last-child::after {
  content: ' AED';
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-left: 2px;
}

/* ============================================================
   COMBOS
   ============================================================ */
.combos {
  background: var(--saffron);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.combos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(139,24,24,.18), transparent 60%);
  pointer-events: none;
}
.combos .section-head { color: var(--bg-dark); position: relative; }
.combos .section-head h2 { color: var(--bg-dark); }
.combos .section-head h2 em { color: var(--maroon); }
.combos .kicker { color: var(--maroon); border-color: var(--maroon); }

.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
}
.combo {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
  border: 2px solid var(--bg-dark);
  box-shadow: 6px 6px 0 var(--bg-dark);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.combo:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--bg-dark); }
.combo-tag {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--bg-dark);
  color: var(--saffron);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
}
.combo-price {
  font-family: var(--font-display);
  display: flex; align-items: baseline; gap: 8px;
  margin: 16px 0 12px;
}
.combo-price b { font-size: 80px; color: var(--bg-dark); line-height: 1; letter-spacing: -.01em; }
.combo-price span {
  font-size: 12px;
  background: var(--maroon);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: .12em;
  font-family: var(--font-body);
  font-weight: 800;
}
.combo h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 12px;
  letter-spacing: 0;
}
.combo p {
  color: var(--text-muted);
  margin: 0 0 24px;
  font-size: 15px;
}

/* ============================================================
   DISTRIBUTE / SPONSOR A MEAL
   ============================================================ */
.distribute {
  background: var(--maroon-deep);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.distribute::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255,182,39,.14), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(139,24,24,.45), transparent 60%);
  pointer-events: none;
}
.distribute-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.distribute-text .kicker { color: var(--saffron); border-color: var(--saffron); }
.distribute-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -.005em;
  color: #fff;
}
.distribute-text h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--saffron);
  font-weight: 700;
}
.distribute-text .lead {
  font-size: 18px;
  color: var(--text-light);
  margin: 0 0 28px;
}
.distribute-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--text-light);
}
.distribute-list li {
  position: relative;
  padding-left: 22px;
}
.distribute-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--saffron);
}
.distribute-note {
  background: rgba(255,182,39,.08);
  border-left: 3px solid var(--saffron);
  padding: 16px 20px;
  margin: 0 0 32px;
  font-size: 15px;
  color: var(--text-light);
  border-radius: 0 8px 8px 0;
}
.distribute-note strong { color: var(--saffron); }

.distribute-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,182,39,.18);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .2s, background .2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  background: rgba(255,182,39,.06);
}
.stat-card b {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--saffron);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.stat-card span {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.stat-card.highlight {
  grid-column: span 2;
  background: var(--saffron);
  color: var(--bg-dark);
  border-color: var(--saffron);
}
.stat-card.highlight:hover { background: #fff; transform: translateY(-4px); }
.stat-card.highlight b { color: var(--bg-dark); font-size: clamp(3rem, 6vw, 4.5rem); }
.stat-card.highlight span {
  color: var(--maroon-deep);
  font-weight: 700;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  display: block;
  margin-top: 4px;
}

/* "Real, not stock" Instagram block */
.distribute-real {
  margin-top: 90px;
  padding-top: 80px;
  border-top: 1px solid rgba(255,182,39,.15);
  position: relative;
}
.distribute-real-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.distribute-real-head .kicker {
  color: var(--saffron);
  border-color: var(--saffron);
}
.distribute-real-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin: 16px 0;
  letter-spacing: -.005em;
  line-height: 1;
}
.distribute-real-head p {
  color: var(--text-light);
  font-size: 17px;
  margin: 0;
  line-height: 1.6;
}
.distribute-real-head a {
  color: var(--saffron);
  border-bottom: 1px solid rgba(255,182,39,.5);
  font-weight: 600;
  transition: color .2s, border-color .2s;
}
.distribute-real-head a:hover { color: #fff; border-bottom-color: #fff; }
.distribute-real-embed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 200px;
  padding: 4px;
  position: relative;
}
.distribute-real-embed::before {
  content: 'Loading Instagram…';
  position: absolute;
  top: 30px;
  font-size: 13px;
  color: var(--text-light-muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 0;
}
.distribute-real-embed .instagram-media {
  position: relative;
  z-index: 1;
  background: #fff !important;
  border-radius: 18px !important;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(255,182,39,.15);
  max-width: 540px !important;
  min-width: 326px !important;
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
}
.distribute-real-cta {
  text-align: center;
  margin: 28px 0 0;
  font-size: 14px;
  letter-spacing: .04em;
}
.distribute-real-cta a {
  color: var(--saffron);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.distribute-real-cta a:hover { border-bottom-color: var(--saffron); }

/* ============================================================
   BRANCHES
   ============================================================ */
.branches { padding: 120px 0; background: var(--bg-cream); }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.branch {
  background: #fff;
  padding: 28px 28px 28px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.branch::before {
  content: '';
  position: absolute;
  top: 30px; left: 0;
  width: 4px; height: 32px;
  background: var(--maroon);
  border-radius: 0 4px 4px 0;
}
.branch:hover {
  transform: translateY(-4px);
  border-color: var(--maroon);
  box-shadow: 0 20px 40px -20px rgba(10,9,8,.2);
}
.branch.coming { opacity: .75; }
.branch.coming::before { background: var(--saffron); }
.branch h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  letter-spacing: 0;
}
.branch-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--maroon);
  color: #fff;
  padding: 4px 9px;
  border-radius: 999px;
}
.branch.coming .branch-tag { background: var(--saffron); color: var(--bg-dark); }
.addr {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.5;
}
.branch-meta {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.branch-meta li { display: flex; align-items: center; gap: 8px; }
.branch-meta li::before { content: '·'; color: var(--maroon); font-weight: 700; font-size: 22px; line-height: 0; }
.branch-meta a { color: var(--text); border-bottom: 1px solid var(--maroon); padding-bottom: 1px; }

/* ============================================================
   ORDER
   ============================================================ */
.order {
  background: var(--bg-dark);
  color: #fff;
  padding: 120px 0;
}
.order-apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.app-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: #1a1614;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s;
}
.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1, var(--saffron)), var(--c2, var(--maroon)));
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}
.app-card > * { position: relative; z-index: 1; transition: color .3s; }
.app-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
}
.app-card:hover::before { opacity: 1; }
.app-card:hover .app-name,
.app-card:hover .app-rating { color: var(--bg-dark); }
.app-name {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 8px;
  color: #fff;
  display: flex; align-items: baseline; gap: 6px;
  letter-spacing: 0;
}
.app-name small { font-size: 12px; opacity: .7; letter-spacing: .15em; }
.app-rating {
  font-size: 13px;
  color: var(--text-light-muted);
  font-weight: 500;
  letter-spacing: .04em;
}

.whatsapp {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, #1a1614, #0a0908);
  border-radius: var(--radius);
  border: 1px solid rgba(255,182,39,.15);
}
.whatsapp p {
  font-size: 20px;
  color: var(--text-light);
  margin: 0 0 24px;
  font-style: italic;
  font-family: var(--font-italic);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg-paper); padding: 120px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review {
  background: #fff;
  padding: 36px 32px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  margin: 0;
}
.review::before {
  content: '"';
  position: absolute;
  top: -12px; left: 22px;
  font-family: var(--font-italic);
  font-size: 110px;
  color: var(--saffron);
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}
.stars { color: var(--saffron); margin-bottom: 16px; font-size: 18px; letter-spacing: 2px; }
blockquote {
  margin: 0 0 20px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.review figcaption {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .04em;
}
.review figcaption span { color: var(--maroon); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 120px 0 0; background: var(--bg-cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 4px;
  margin-top: 40px;
}
.gallery-grid figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--saffron);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .3s;
  filter: saturate(1.05);
}
.gallery-grid figure:hover img { transform: scale(1.08); filter: saturate(1.25); }
.gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.gallery-grid figure:nth-child(4) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 120px 0; background: var(--bg-paper); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-list details summary {
  font-family: var(--font-display);
  font-size: 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 60px;
  letter-spacing: 0;
  line-height: 1.2;
  transition: color .2s;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s;
}
.faq-list details:hover summary { color: var(--maroon); }
.faq-list details[open] summary::after {
  content: '−';
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
.faq-list details p {
  margin: 16px 0 8px;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 720px;
  line-height: 1.6;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--maroon);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,182,39,.18), transparent 60%);
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  margin: 0 0 32px;
  letter-spacing: -.01em;
  position: relative;
  line-height: .95;
}
.cta-strip-actions {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
}
.footer-brand p {
  font-family: var(--font-italic);
  font-style: italic;
  margin: 18px 0 0;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .2em;
  margin: 0 0 20px;
  color: var(--saffron);
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 15px;
  color: var(--text-light);
  transition: color .2s;
}
.footer-col a:hover { color: var(--saffron); }
.footer-base {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-base p { margin: 0; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-img, .hero-glow, .marquee-track, .scroll-cue span { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: 110px; }
  .hero-row1 { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ten { font-size: clamp(7rem, 35vw, 16rem); }
  .aed { margin-top: 0; flex-direction: row; align-items: baseline; }
  .aed small { margin-left: 0; }
  .hero-stats { gap: 36px; }
  .hero-stats b { font-size: 32px; }

  .story-grid { grid-template-columns: 1fr; gap: 80px; }
  .story-images { aspect-ratio: 4/5; max-width: 520px; }
  .story-img-2 { width: 70%; }
  .story-badge { right: 0; top: 10px; }

  .menu-card.hero-item {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .menu-card.hero-item .menu-body h3 { font-size: 26px; }
  .menu-card.hero-item .price b { font-size: 38px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4) { grid-column: span 2; grid-row: span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }

  .addons { padding: 36px 28px; }
  .story, .menu, .combos, .branches, .order, .reviews, .gallery, .faq, .cta-strip, .distribute { padding: 80px 0; }
  .gallery { padding-bottom: 0; }

  .distribute-grid { grid-template-columns: 1fr; gap: 50px; }
  .distribute-real { margin-top: 60px; padding-top: 60px; }
}

@media (max-width: 600px) {
  .container, .nav { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .footer-base { flex-direction: column; }
  .menu-grid { grid-template-columns: 1fr; }
  .distribute-list { grid-template-columns: 1fr; }
  .distribute-stats { grid-template-columns: 1fr; }
  .stat-card.highlight { grid-column: span 1; }
  .addon-list { gap: 10px; }
  .marquee { font-size: 16px; }
  .marquee-track { gap: 36px; }
  .story-img-2 { bottom: -20px; }
  .combo { padding: 30px 24px; }
  .combo-price b { font-size: 64px; }
  .review { padding: 32px 24px 24px; }
  .review::before { font-size: 90px; left: 18px; }
  .branch { padding: 24px 24px 24px 32px; }
  .whatsapp { padding: 36px 20px; }
  .addons h3 { font-size: 26px; }
  .faq-list details summary { font-size: 19px; padding-right: 50px; }
  .faq-list details summary::after { width: 30px; height: 30px; font-size: 20px; }
}

/* Mobile burger menu open */
.nav-links.mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  background: rgba(10,9,8,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,182,39,.12);
}
