/* ==========================================================================
   MILAD FAST FOOD — Coming Soon
   Theme: Riyadh night · anthracite facade · orange LED · warm amber
   All brand colors live in :root — change them here only.
   ========================================================================== */

/* ---------- Local brand fonts ---------- */
@font-face {
  font-family: 'Bauhaus 93';
  src: url('../fonts/BAUHS93.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Reem Kufi';
  src: url('../fonts/ReemKufi-Regular.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette */
  --orange:      #ed3101;
  --amber:       #fba91f;
  --cream:       #fee4b3;
  --green:       #0f4d42;

  /* Premium darks */
  --black:       #08080a;
  --anthracite:  #121318;
  --smoke:       #1a1c22;
  --line:        rgba(254, 228, 179, 0.09);

  /* Derived */
  --text:        #f4ead8;
  --text-dim:    rgba(244, 234, 216, 0.62);
  --glow-orange: rgba(237, 49, 1, 0.45);
  --glow-amber:  rgba(251, 169, 31, 0.35);

  /* Type */
  --font-latin:   'Outfit', system-ui, -apple-system, sans-serif;
  --font-arabic:  'Almarai', 'Outfit', system-ui, sans-serif;
  --font-kufi:    'Reem Kufi', 'Almarai', sans-serif;
  --font-bauhaus: 'Bauhaus 93', 'Outfit', system-ui, sans-serif;

  --radius: 18px;
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-latin);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* Arabic: swap family, kill letter-spacing */
html[lang="ar"] body { font-family: var(--font-arabic); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3,
html[lang="ar"] .kicker, html[lang="ar"] .btn, html[lang="ar"] .chip {
  font-family: var(--font-arabic);
  letter-spacing: 0 !important;
}

.container { width: min(1160px, 92%); margin-inline: auto; }
.section { position: relative; padding: clamp(84px, 11vw, 150px) 0; }

/* ==========================================================================
   Cursor glow — warm light following the pointer (desktop, fine pointer only)
   ========================================================================== */
.cursor-glow {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0; transition: opacity .6s ease;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(251, 169, 31, 0.07), transparent 65%);
  mix-blend-mode: screen;
}
@media (pointer: fine) { .cursor-glow.on { opacity: 1; } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: clamp(18px, 4vw, 44px);
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand-latin {
  font-family: var(--font-bauhaus);
  font-weight: 400; letter-spacing: .2em; font-size: 1.12rem;
  color: var(--cream); padding-inline-start: .2em; /* balance tracking */
}
.nav-brand-sep { width: 1px; height: 18px; background: var(--amber); opacity: .55; }
.nav-brand-ar { font-family: var(--font-kufi); font-size: 1.15rem; color: var(--amber); line-height: 1; }

.lang-switch {
  display: flex; gap: 2px; padding: 3px;
  border: 1px solid var(--line); border-radius: 100px;
  background: rgba(18, 19, 24, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lang-btn {
  padding: 7px 14px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  color: var(--text-dim);
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active {
  color: #fff; background: linear-gradient(135deg, var(--orange), #c22a01);
  box-shadow: 0 0 14px var(--glow-orange);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 90% 65% at 50% 42%, transparent 30%, rgba(8, 8, 10, 0.72) 100%),
    linear-gradient(to bottom, rgba(8, 8, 10, 0.62) 0%, rgba(8, 8, 10, 0.34) 42%, rgba(8, 8, 10, 0.92) 100%);
}

/* Drifting smoke / steam */
.hero-smoke { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-smoke i {
  position: absolute; width: 55vmax; height: 55vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 228, 179, 0.05), transparent 62%);
  filter: blur(30px);
  animation: smoke-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-smoke i:nth-child(2) {
  width: 42vmax; height: 42vmax;
  inset-inline-end: -12%; top: 46%;
  background: radial-gradient(circle, rgba(251, 169, 31, 0.05), transparent 62%);
  animation-duration: 34s; animation-delay: -14s;
}
@keyframes smoke-drift {
  from { transform: translate3d(-8%, 4%, 0) scale(1); }
  to   { transform: translate3d(10%, -7%, 0) scale(1.18); }
}

/* Moving LED lines */
.led-line {
  position: absolute; height: 2px; width: 34vw; min-width: 240px;
  background: linear-gradient(90deg, transparent, var(--amber) 45%, var(--orange) 55%, transparent);
  opacity: .5; filter: drop-shadow(0 0 6px var(--glow-amber));
  animation: led-sweep 9s linear infinite;
  pointer-events: none; will-change: transform;
}
.led-a { top: 22%; animation-duration: 11s; }
.led-b { bottom: 16%; animation-duration: 14s; animation-delay: -6s; opacity: .32; }
.led-c { top: 0; animation-duration: 13s; opacity: .3; }
.led-d { top: 0; animation-duration: 16s; animation-delay: -8s; opacity: .3; }
@keyframes led-sweep {
  from { transform: translateX(-45vw); }
  to   { transform: translateX(145vw); }
}
html[dir="rtl"] .led-line { animation-name: led-sweep-rtl; }
@keyframes led-sweep-rtl {
  from { transform: translateX(45vw); }
  to   { transform: translateX(-145vw); }
}

/* --- Hero content --- */
.hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: calc(var(--nav-h) + 24px) 20px 90px;
  will-change: transform, opacity;
}

/* Illuminated sign (logo) — mirrors the facade: MILAD · emblem · ميلاد */
.sign { margin-bottom: clamp(22px, 4vh, 40px); }
.sign-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4.5vw, 52px);
}
.sign-logo {
  height: clamp(84px, 13vw, 148px); width: auto;
  border-radius: 10px;
  opacity: .88; /* slight transparency so it blends with the video light */
  box-shadow:
    0 0 26px rgba(237, 49, 1, 0.5),
    0 0 70px rgba(237, 49, 1, 0.3),
    0 10px 40px -10px rgba(0, 0, 0, 0.8);
  animation: sign-flicker 2.4s ease-out both;
}
.sign-ar {
  font-family: var(--font-kufi);
  font-size: clamp(1.9rem, 4.6vw, 3.4rem); font-weight: 500; line-height: 1.4;
  color: var(--amber);
  text-shadow: 0 0 18px var(--glow-amber), 0 0 40px var(--glow-amber);
  animation: sign-on 2.2s ease-out both;
}
.sign-latin {
  font-family: var(--font-bauhaus);
  font-size: clamp(2.4rem, 6.6vw, 4.8rem); font-weight: 400;
  letter-spacing: .16em; padding-inline-start: .16em; /* optical centering */
  color: var(--cream); line-height: 1.08;
  text-shadow:
    0 0 12px rgba(254, 228, 179, 0.35),
    0 0 42px var(--glow-amber),
    0 0 110px var(--glow-orange);
  animation: sign-flicker 2.4s ease-out both;
}
.sign-tag {
  display: inline-block; margin-top: 18px;
  font-size: clamp(.72rem, 1.4vw, .88rem); font-weight: 600;
  letter-spacing: .58em; padding-inline-start: .58em;
  color: var(--amber); text-transform: uppercase;
  animation: sign-on 2.6s ease-out both;
}
@keyframes sign-flicker {
  0%   { opacity: 0; text-shadow: none; }
  8%   { opacity: .4; }
  12%  { opacity: .08; }
  20%  { opacity: .85; text-shadow: 0 0 12px rgba(254,228,179,.3); }
  26%  { opacity: .3; }
  36%  { opacity: 1; }
  100% { opacity: 1; }
}
@keyframes sign-on {
  0%, 30% { opacity: 0; transform: translateY(8px); }
  100%    { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 18px; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(18, 19, 24, 0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  margin-bottom: clamp(18px, 3vh, 28px);
  animation: rise .9s ease-out 1.1s both;
}
html[lang="ar"] .hero-kicker { letter-spacing: 0; text-transform: none; font-size: .95rem; }
.hero-kicker svg { color: var(--amber); flex-shrink: 0; }

/* LED / neon headline */
.led-text {
  background: linear-gradient(100deg, var(--cream) 8%, var(--amber) 38%, var(--orange) 62%, var(--amber) 88%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter:
    drop-shadow(0 0 14px rgba(251, 169, 31, 0.38))
    drop-shadow(0 2px 34px rgba(237, 49, 1, 0.3));
  animation: led-shimmer 6s ease-in-out infinite;
}
@keyframes led-shimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
.hero-title {
  font-size: clamp(2rem, 5.6vw, 4rem); font-weight: 800;
  letter-spacing: .015em; line-height: 1.14;
  max-width: 17ch; margin-inline: auto;
  margin-bottom: clamp(14px, 2.4vh, 22px);
  animation: rise .9s ease-out 1.25s both, led-shimmer 6s ease-in-out 2s infinite;
}
.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.3rem); font-weight: 300;
  color: var(--text-dim); max-width: 46ch; margin-inline: auto;
  margin-bottom: clamp(30px, 4.5vh, 46px);
  animation: rise .9s ease-out 1.45s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Buttons --- */
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: rise .9s ease-out 1.6s both;
}
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 14px 34px; border-radius: 100px;
  font-weight: 600; font-size: .98rem; letter-spacing: .05em;
  transition: transform .3s cubic-bezier(.2,.7,.3,1.2), box-shadow .35s ease,
              background .35s ease, border-color .35s ease, color .35s ease;
  overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber) -30%, var(--orange) 55%, #b52501 130%);
  box-shadow: 0 6px 26px var(--glow-orange), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(237, 49, 1, 0.55), 0 0 24px var(--glow-amber),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(251, 169, 31, 0.4);
  background: rgba(18, 19, 24, 0.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--amber); color: #fff;
  background: rgba(251, 169, 31, 0.1);
  box-shadow: 0 8px 30px rgba(251, 169, 31, 0.22);
}
/* light sweep on hover */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(120%); }
html[dir="rtl"] .btn::after { transform: translateX(120%); }
html[dir="rtl"] .btn:hover::after { transform: translateX(-120%); }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 1.5px solid rgba(254, 228, 179, 0.35);
  border-radius: 100px; z-index: 1;
  animation: rise 1s ease-out 2.2s both;
}
.hero-scroll-dot {
  position: absolute; top: 8px; left: 50%; margin-left: -2.5px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 8px var(--glow-amber);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70%      { transform: translateY(16px); opacity: 0; }
}

/* ==========================================================================
   FASCIA — the orange crackle pattern strip from the facade
   ========================================================================== */
.fascia {
  height: 52px; background: var(--anthracite);
  border-block: 1px solid var(--line);
  overflow: hidden; position: relative;
}
.fascia svg { width: 100%; height: 100%; }
.fascia::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black), transparent 18%, transparent 82%, var(--black));
  pointer-events: none;
}

/* ==========================================================================
   SECTIONS — shared
   ========================================================================== */
.kicker {
  font-size: .8rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
html[lang="ar"] .kicker { letter-spacing: 0; font-size: .95rem; }
.section-title {
  font-size: clamp(1.8rem, 4.2vw, 3rem); font-weight: 800;
  line-height: 1.18; letter-spacing: .01em;
  margin-bottom: clamp(18px, 3vw, 28px);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--black); text-align: center; overflow: hidden; }
.about-text {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem); font-weight: 300;
  color: var(--text-dim); max-width: 62ch; margin-inline: auto;
  margin-bottom: 34px;
}
.chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.chip {
  padding: 10px 22px; border-radius: 100px;
  font-size: .86rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--text-dim);
  background: var(--anthracite);
  transition: border-color .3s ease, color .3s ease, box-shadow .3s ease;
}
html[lang="ar"] .chip { letter-spacing: 0; text-transform: none; font-size: .95rem; }
.chip:hover { border-color: rgba(251, 169, 31, 0.5); color: var(--cream); }
.chip-hot {
  color: var(--amber); border-color: rgba(251, 169, 31, 0.45);
  box-shadow: 0 0 18px rgba(251, 169, 31, 0.12), inset 0 0 14px rgba(251, 169, 31, 0.05);
  animation: chip-pulse 3s ease-in-out infinite;
}
@keyframes chip-pulse {
  0%, 100% { box-shadow: 0 0 14px rgba(251, 169, 31, 0.1), inset 0 0 12px rgba(251, 169, 31, 0.04); }
  50%      { box-shadow: 0 0 26px rgba(251, 169, 31, 0.24), inset 0 0 16px rgba(251, 169, 31, 0.08); }
}

/* ==========================================================================
   MENU
   ========================================================================== */
.menu {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(15, 77, 66, 0.16), transparent 70%),
    var(--anthracite);
  text-align: center;
}
.menu-grid {
  margin-top: clamp(34px, 5vw, 56px);
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  text-align: start;
}
.menu-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, var(--smoke), #101116 70%);
  border: 1px solid var(--line);
  transition: transform .45s cubic-bezier(.2,.65,.3,1), border-color .45s ease, box-shadow .45s ease;
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251, 169, 31, 0.38);
  box-shadow:
    0 24px 50px -18px rgba(0, 0, 0, 0.85),
    0 0 34px -6px rgba(237, 49, 1, 0.28),
    inset 0 0 0 1px rgba(251, 169, 31, 0.1);
}
/* warm light reflection sliding over the card */
.menu-card::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(251, 169, 31, 0.09) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .9s ease;
}
.menu-card:hover::before { transform: translateX(130%); }

.card-media {
  position: relative; aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse 80% 90% at 50% 115%, rgba(237, 49, 1, 0.28), transparent 62%),
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(251, 169, 31, 0.18), transparent 66%),
    linear-gradient(180deg, #14151b, #0d0e12);
  border-bottom: 1px solid var(--line);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.65,.3,1);
}
.menu-card:hover .card-media img { transform: scale(1.06); }
/* warm light wash over the photo, stronger on hover */
.card-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(237, 49, 1, 0.14), transparent 45%);
  opacity: .7; transition: opacity .5s ease;
}
.menu-card:hover .card-media::after { opacity: 1; }

.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 6px; color: var(--cream); }
.card-body p { font-size: .92rem; color: var(--text-dim); font-weight: 300; }

/* ==========================================================================
   PROMISE + FACADE
   ========================================================================== */
.promise { background: var(--black); overflow: hidden; }
.promise-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 6vw, 76px); align-items: center;
}
.promise-list { display: grid; gap: 26px; margin-top: clamp(20px, 3vw, 34px); }
.promise-list li { display: flex; gap: 18px; align-items: flex-start; }
.promise-dot {
  flex-shrink: 0; width: 12px; height: 12px; margin-top: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--glow-orange), 0 0 26px var(--glow-orange);
}
.promise-list h3 { font-size: 1.16rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.promise-list p { color: var(--text-dim); font-weight: 300; font-size: .98rem; }

.promise-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.9), 0 0 50px -12px rgba(237, 49, 1, 0.18);
}
.promise-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.promise-photo:hover img { transform: scale(1.04); }
.promise-photo figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 26px 24px 16px;
  font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream);
  background: linear-gradient(to top, rgba(8, 8, 10, 0.88), transparent);
}
html[lang="ar"] .promise-photo figcaption { letter-spacing: 0; text-transform: none; font-size: .95rem; }

/* ==========================================================================
   OPENING
   ========================================================================== */
.opening {
  position: relative; text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 50% 100%, rgba(237, 49, 1, 0.13), transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(15, 77, 66, 0.18), transparent 70%),
    var(--anthracite);
}
.opening-smoke i { animation-duration: 40s; }
.opening .container { position: relative; z-index: 1; }
.opening .section-title { font-size: clamp(2rem, 5vw, 3.6rem); }
.opening-note {
  color: var(--text-dim); font-weight: 300; font-size: 1.06rem;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.countdown {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: clamp(34px, 5vw, 50px);
}
.count-box {
  min-width: 96px; padding: 18px 14px 14px;
  border-radius: var(--radius); border: 1px solid rgba(251, 169, 31, 0.22);
  background: rgba(8, 8, 10, 0.55);
  box-shadow: inset 0 0 22px rgba(251, 169, 31, 0.05);
}
.count-num {
  display: block; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800;
  font-variant-numeric: tabular-nums; color: var(--cream);
  text-shadow: 0 0 20px var(--glow-amber);
}
.count-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim);
}
html[lang="ar"] .count-label { letter-spacing: 0; text-transform: none; font-size: .85rem; }

.socials { display: flex; gap: 16px; justify-content: center; margin-bottom: 26px; }
.social {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 50%; border: 1px solid var(--line);
  color: var(--cream); background: rgba(8, 8, 10, 0.5);
  transition: transform .35s cubic-bezier(.2,.7,.3,1.3), border-color .3s ease,
              color .3s ease, box-shadow .35s ease, background .3s ease;
}
.social svg { width: 23px; height: 23px; }
.social:hover {
  transform: translateY(-5px); color: #fff;
  border-color: var(--amber);
  background: linear-gradient(135deg, rgba(237, 49, 1, 0.25), rgba(251, 169, 31, 0.15));
  box-shadow: 0 10px 26px rgba(237, 49, 1, 0.32), 0 0 18px var(--glow-amber);
}
.location {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: .95rem; letter-spacing: .06em;
}
.location svg { color: var(--amber); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--black); }
.fascia-footer { height: 40px; }
.footer-inner { text-align: center; padding: clamp(44px, 6vw, 64px) 0 40px; }
.footer-brand { display: inline-flex; align-items: baseline; gap: 16px; margin-bottom: 12px; }
.footer-latin {
  font-family: var(--font-bauhaus);
  font-weight: 400; letter-spacing: .2em; padding-inline-start: .2em;
  font-size: 1.4rem; color: var(--cream);
  text-shadow: 0 0 22px var(--glow-amber);
}
.footer-ar { font-family: var(--font-kufi); font-size: 1.5rem; color: var(--amber); }
.footer-tagline { color: var(--text-dim); font-weight: 300; margin-bottom: 22px; }
.footer-copy {
  font-size: .8rem; color: rgba(244, 234, 216, 0.35); letter-spacing: .06em;
  padding-top: 20px; border-top: 1px solid var(--line);
  max-width: 420px; margin-inline: auto;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; }
  .promise-photo { order: -1; }
}

@media (max-width: 640px) {
  :root { --nav-h: 62px; }
  .nav { padding-inline: 16px; }
  .nav-brand-ar { display: none; }
  .nav-brand-sep { display: none; }

  /* sign stacks: emblem on top, MILAD, then Arabic */
  .sign-row { flex-direction: column; gap: 16px; }
  .sign-logo { order: -1; height: 96px; }
  .sign-latin { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .sign-ar { font-size: 1.7rem; }

  .menu-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; padding-inline: 8px; }
  .btn { width: 100%; min-height: 58px; font-size: 1.04rem; }

  .count-box { min-width: 74px; padding: 14px 8px 10px; }
  .countdown { gap: 10px; }
  .socials { flex-wrap: wrap; }

  /* lighter effects on mobile */
  .hero-smoke i { filter: blur(18px); }
  .led-b, .led-d { display: none; }
  .cursor-glow { display: none; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .15s !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .led-line, .hero-smoke { display: none; }
}
