/* ============================================================
   Haroon Oven — فُرن هارون
   Bold & appetizing brand system. Works LTR (en) and RTL (ar).
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Cairo:wght@400;500;600;700;800;900&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --red:        #D62027;
  --red-deep:   #9E141A;
  --red-ink:    #5A0A0D;
  --gold:       #F2A81D;
  --gold-light: #FFC94D;
  --gold-deep:  #C9820A;
  --cream:      #FFF7EC;
  --cream-2:    #FBEAD2;
  --ink:        #241606;
  --ink-soft:   #574433;
  --line:       #E9D8BE;
  --white:      #ffffff;

  --shadow-sm: 0 2px 8px rgba(58, 24, 8, .08);
  --shadow-md: 0 12px 34px rgba(58, 24, 8, .14);
  --shadow-lg: 0 26px 70px rgba(58, 24, 8, .22);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 30px;

  --maxw: 1180px;
  --header-h: 74px;

  --font-en: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-ar: 'Cairo', system-ui, 'Segoe UI', Tahoma, sans-serif;
  --font: var(--font-en);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

html[dir="rtl"] { --font: var(--font-ar); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 { letter-spacing: 0; font-weight: 900; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--maxw), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(56px, 9vw, 108px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
html[dir="rtl"] .eyebrow { letter-spacing: .06em; }
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); color: var(--ink); }
.section-lead { max-width: 60ch; margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border: 0; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 20px; height: 20px; }

.btn--gold { --bg: linear-gradient(135deg, var(--gold-light), var(--gold)); --fg: var(--ink); }
.btn--dark { --bg: var(--ink); --fg: var(--cream); }
.btn--ghost {
  --fg: var(--ink);
  background: transparent; box-shadow: inset 0 0 0 2px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--red); color: var(--red); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(214, 32, 39, 0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.site-header.is-solid {
  background: var(--red);
  box-shadow: 0 8px 30px rgba(90, 10, 13, .28);
}
.site-header.force-solid { background: var(--red); }

.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-weight: 800;
}
.brand__logo {
  height: 44px; width: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-size: 1.16rem; letter-spacing: .01em; }
.brand__tag { font-size: .64rem; font-weight: 600; opacity: .82; letter-spacing: .13em; text-transform: uppercase; }
html[dir="rtl"] .brand__tag { letter-spacing: .02em; }

.nav {
  display: flex; align-items: center; gap: 6px;
}
.nav a {
  position: relative;
  padding: 9px 16px; border-radius: 999px;
  color: #fff; font-weight: 600; font-size: .98rem;
  transition: background .2s;
}
.nav a::after {
  content: ""; position: absolute; inset-inline: 16px; inset-block-end: 4px;
  height: 2px; background: var(--gold-light); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav a:hover { background: rgba(255,255,255,.12); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  margin-inline-start: 6px;
  padding: 9px 15px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08); color: #fff;
  font-weight: 700; font-size: .9rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,.2); border-color: #fff; transform: translateY(-2px); }
.lang-toggle svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 12px;
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  color: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .brand__tag { display: none; }
  .brand__logo { height: 40px; }
  .brand__name { font-size: 1.05rem; }
  .nav {
    position: fixed; inset-block-start: var(--header-h); inset-inline: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--red);
    padding: 14px 20px 26px;
    box-shadow: 0 24px 40px rgba(90,10,13,.35);
    transform: translateY(-140%);
    transition: transform .34s var(--ease);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 16px; font-size: 1.06rem; border-radius: 12px; }
  .nav a::after { display: none; }
  .lang-toggle { margin: 8px 0 0; justify-content: center; padding: 13px; }
}

/* ============================================================
   HERO (3D)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-block: calc(var(--header-h) + 30px) 60px;
  overflow: hidden;
  background:
    radial-gradient(120% 95% at 72% 8%, #E9762B 0%, #C23417 28%, #6E1608 58%, #2C0A03 100%);
  color: #fff;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__canvas.is-ready { opacity: 1; }

/* warm vignette + grain sit above canvas, below text */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(100% 70% at 55% 45%, transparent 55%, rgba(30,7,2,.5) 100%),
    linear-gradient(to bottom, rgba(30,7,2,.28), transparent 26%, transparent 62%, rgba(30,7,2,.5));
}
html[dir="rtl"] .hero {
  background:
    radial-gradient(120% 95% at 28% 8%, #E9762B 0%, #C23417 28%, #6E1608 58%, #2C0A03 100%);
}

.hero__inner {
  position: relative; z-index: 3;
  width: min(560px, calc(100% - 40px));
  margin-inline: max(20px, calc((100% - var(--maxw)) / 2)) auto;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
}
html[dir="rtl"] .hero__eyebrow { letter-spacing: .03em; }

.hero__title {
  margin-top: 22px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.04;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero__title .accent {
  color: var(--gold-light);
  -webkit-text-stroke: 0;
}
.hero__subtitle {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 500;
  max-width: 46ch;
  color: rgba(255,255,255,.92);
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.hero__cta {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* End-of-loop brand reveal overlay (fades in when the 3D pizza is done) */
.hero__reveal {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center;
  background:
    radial-gradient(70% 70% at 50% 45%, rgba(226,120,40,.16), transparent 70%),
    radial-gradient(120% 120% at 50% 50%, rgba(40,10,4,.86), rgba(24,6,2,.97));
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease, visibility .7s;
  pointer-events: none;
}
.hero__reveal.is-shown { opacity: 1; visibility: visible; }
.hero__reveal img { height: clamp(90px, 15vw, 150px); width: auto; filter: drop-shadow(0 14px 30px rgba(0,0,0,.4)); }
.hero__reveal .r-ar { font-family: var(--font-ar); font-weight: 900; font-size: clamp(2rem, 6vw, 3.4rem); }
.hero__reveal .r-en { font-family: var(--font-en); font-weight: 800; font-size: clamp(1.4rem, 4vw, 2.2rem); letter-spacing: .04em; }
.hero__reveal .r-tag { font-weight: 600; opacity: .85; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; }

.hero__scroll {
  position: absolute; inset-block-end: 22px; inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hero__scroll span.dot {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.6); border-radius: 999px;
  position: relative;
}
.hero__scroll span.dot::before {
  content: ""; position: absolute; inset-block-start: 7px; inset-inline-start: 50%;
  width: 4px; height: 8px; background: #fff; border-radius: 3px;
  transform: translateX(-50%);
  animation: scrolldot 1.7s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,-4px);} 40%{opacity:1;} 80%{opacity:0;transform:translate(-50%,12px);} 100%{opacity:0;} }
@media (prefers-reduced-motion: reduce) { .hero__scroll span.dot::before { animation: none; } }

/* ============================================================
   HOME — content sections
   ============================================================ */
.about { background: var(--cream); }
.about__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about__art {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 80% at 30% 25%, #FFD98A, transparent 60%),
    radial-gradient(90% 90% at 80% 80%, #FF8A3D, transparent 55%),
    var(--red);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.about__art img { width: 74%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } .about__art { max-width: 420px; } }

/* Category cards */
.cats__grid {
  margin-top: 46px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cats__grid { grid-template-columns: 1fr; } }

.cat-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-card__icon {
  width: 62px; height: 62px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--red-deep);
}
.cat-card__icon svg { width: 34px; height: 34px; }
.cat-card h3 { font-size: 1.2rem; }
.cat-card p { margin-top: 8px; color: var(--ink-soft); font-size: .96rem; }

/* Expand / coming soon */
.expand {
  background: linear-gradient(135deg, var(--ink), #3A2410);
  color: var(--cream);
}
.expand .wrap { text-align: center; }
.expand h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.expand p { margin: 16px auto 0; max-width: 56ch; color: rgba(255,247,236,.8); }
.expand__chips { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  padding: 10px 20px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 600; font-size: .95rem;
}
.chip.is-soon { opacity: .72; }
.chip.is-soon::after { content: "•"; margin-inline-start: 8px; color: var(--gold-light); }

/* Visit strip */
.visit__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px;
}
@media (max-width: 820px) { .visit__grid { grid-template-columns: 1fr; } }
.visit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.visit-card h3 { font-size: 1.05rem; color: var(--red); display: flex; align-items: center; gap: 10px; }
.visit-card h3 svg { width: 22px; height: 22px; }
.visit-card p { margin-top: 10px; color: var(--ink-soft); font-size: .98rem; }
.visit-card .btn { margin-top: 16px; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-head {
  background: var(--red);
  color: #fff;
  padding: calc(var(--header-h) + 46px) 0 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 50% -10%, rgba(255,201,77,.5), transparent 60%);
}
.page-head .wrap { position: relative; }
.page-head h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
.page-head p { margin: 14px auto 0; max-width: 54ch; color: rgba(255,255,255,.9); }

.menu-toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center;
  margin-top: 26px;
}
.menu-toolbar .btn { box-shadow: none; }

.menu-nav {
  position: sticky; inset-block-start: var(--header-h); z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.menu-nav .wrap { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav button {
  flex: 0 0 auto;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-weight: 700; font-size: .92rem; color: var(--ink-soft);
  transition: all .2s;
}
.menu-nav button.is-active { background: var(--red); color: #fff; border-color: var(--red); }

.menu-section { padding: clamp(38px, 6vw, 62px) 0; scroll-margin-top: calc(var(--header-h) + 70px); }
.menu-section:nth-child(even) { background: #fff; }

.menu-section__head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.menu-section__head .m-ico {
  width: 54px; height: 54px; border-radius: 14px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--red-deep);
}
.menu-section__head .m-ico svg { width: 30px; height: 30px; }
.menu-section__head h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); }
.menu-section__note { color: var(--ink-soft); font-size: .95rem; margin-bottom: 26px; }

.size-legend {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.size-legend span {
  font-size: .8rem; font-weight: 700; color: var(--ink-soft);
  background: var(--cream-2); border-radius: 999px; padding: 5px 12px;
}

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
@media (max-width: 780px) { .menu-list { grid-template-columns: 1fr; } }

.menu-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px; align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item__ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream-2);
  display: grid; place-items: center; color: var(--red);
}
.menu-item__ico svg { width: 26px; height: 26px; }
.menu-item__body h3 { font-size: 1.02rem; font-weight: 700; }
.menu-item__body .m-en { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-top: 2px; }
html[dir="rtl"] .menu-item__body .m-en { font-family: var(--font-en); }
html[dir="ltr"] .menu-item__body .m-alt { font-family: var(--font-ar); }

.menu-item__prices {
  display: flex; gap: 8px; align-items: center; flex-shrink: 0;
  text-align: end;
}
.price-tag {
  display: inline-flex; flex-direction: column; align-items: center;
  min-width: 58px;
  background: #fff; border: 1.5px solid var(--gold);
  border-radius: 10px; padding: 4px 8px;
  line-height: 1.1;
}
.price-tag .p-size { font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }
.price-tag .p-val { font-size: .95rem; font-weight: 800; color: var(--red-deep); }
.price-tag .p-val .cur { font-size: .62rem; font-weight: 700; }
.menu-section:nth-child(even) .price-tag { background: var(--cream); }

.menu-cta {
  margin-top: 40px; padding: 30px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff; border-radius: var(--radius);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.menu-cta p { font-weight: 700; font-size: 1.1rem; }
.menu-cta .btn { flex: 0 0 auto; }

.vat-note {
  text-align: center; color: var(--ink-soft); font-size: .9rem;
  padding: 22px 0 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.info-card h2 {
  font-size: 1.15rem; color: var(--red); display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.info-card h2 svg { width: 24px; height: 24px; flex: 0 0 auto; }
.info-card p { color: var(--ink-soft); }
.info-card p strong { color: var(--ink); }
.info-card .btn { margin-top: 16px; }
.info-card .stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.brand-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.brand-badges a, .brand-badges span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: var(--cream); border: 1px solid var(--line);
  font-weight: 700; font-size: .9rem;
}
.brand-badges svg { width: 20px; height: 20px; }

.map-frame {
  grid-column: 1 / -1;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background: var(--cream-2);
  min-height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ============================================================
   RATE PAGE
   ============================================================ */
.rate-wrap { max-width: 640px; margin-inline: auto; text-align: center; }
.rate-stars {
  display: inline-flex; gap: 10px; margin: 8px 0 24px;
  color: var(--gold);
}
.rate-stars svg { width: 42px; height: 42px; filter: drop-shadow(0 6px 12px rgba(201,130,10,.35)); }
.rate-stars svg:nth-child(1){ animation: pop .5s var(--ease) both .05s; }
.rate-stars svg:nth-child(2){ animation: pop .5s var(--ease) both .12s; }
.rate-stars svg:nth-child(3){ animation: pop .5s var(--ease) both .19s; }
.rate-stars svg:nth-child(4){ animation: pop .5s var(--ease) both .26s; }
.rate-stars svg:nth-child(5){ animation: pop .5s var(--ease) both .33s; }
@keyframes pop { from { opacity: 0; transform: scale(.4) rotate(-18deg); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rate-stars svg { animation: none !important; } }

.rate-note {
  margin-top: 28px; padding: 18px 22px;
  background: var(--cream-2); border-radius: var(--radius-sm);
  font-size: .95rem; color: var(--ink-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink); color: rgba(255,247,236,.82);
  padding: 60px 0 26px;
}
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 14px; }
.footer-brand img { height: 46px; }
.footer-brand .fb-name { font-weight: 800; font-size: 1.1rem; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
html[dir="rtl"] .footer-col h4 { letter-spacing: .04em; }
.footer-col li { margin-bottom: 9px; font-size: .95rem; }
.footer-col a { display: inline-flex; align-items: center; gap: 8px; }
.footer-col svg { width: 17px; height: 17px; opacity: .8; }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; opacity: 1; }

.footer-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .84rem; color: rgba(255,247,236,.6);
}

/* ============================================================
   Reveal-on-scroll animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__canvas { transition: none; }
}

/* utility */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 42px; }
[hidden] { display: none !important; }
