:root {
  --bg: #0f0d0c;
  --bg-elev: #171311;
  --bg-card: #1d1815;
  --bg-panel: #241d19;
  --text: #f5f0ec;
  --text-muted: #a89a90;
  --text-dim: #6b5f57;
  --accent: #e0562f;
  --accent-2: #f2a33d;
  --accent-glow: rgba(224, 86, 47, 0.32);
  --accent-dim: rgba(224, 86, 47, 0.12);
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-w: 1200px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 15% 30%, rgba(224,86,47,0.10), transparent 60%),
    radial-gradient(ellipse 55% 40% at 85% 15%, rgba(242,163,61,0.06), transparent 55%),
    radial-gradient(ellipse 50% 45% at 50% 85%, rgba(224,86,47,0.05), transparent 55%);
  animation: bgShift 22s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(1.5%,-1%) scale(1.02); }
  100% { transform: translate(-1%,1.5%) scale(1); }
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.site-header.scrolled {
  background: rgba(15,13,12,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 0.92rem;
  padding: 9px 18px; border-radius: 999px; transition: all 0.3s ease;
}
.site-nav a:hover { color: var(--text); background: var(--accent-dim); }
.site-nav a.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0f08; font-weight: 800;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.site-nav a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 60px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 55% 45% at 75% 25%, rgba(224,86,47,0.10), transparent), radial-gradient(ellipse 40% 30% at 20% 75%, rgba(242,163,61,0.06), transparent);
}
.hero-grid { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--accent-dim);
  border: 1px solid rgba(224,86,47,0.25); padding: 8px 18px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; color: var(--accent-2); margin-bottom: 26px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulseRing 2s ease-out infinite; }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 26px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero h1 .line { display: block; }
.hero h1 .line.accent { color: var(--accent-2); }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 520px; margin-bottom: 30px; animation: fadeInUp 0.7s ease 0.5s both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.6s both; margin-bottom: 20px; }
.hero-halal { font-size: 0.9rem; color: var(--accent-2); font-weight: 700; letter-spacing: 0.03em; animation: fadeInUp 0.7s ease 0.7s both; }

.hero-media { animation: fadeInUp 0.8s ease 0.5s both; display: flex; justify-content: center; }
.hero-img {
  max-width: 100%; height: auto; border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(224,86,47,0.08);
  animation: floatSlow 7s ease-in-out infinite;
}
@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 999px;
  font-weight: 800; font-size: 0.96rem; text-decoration: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border: none; cursor: pointer; position: relative; overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a0f08;
  box-shadow: 0 4px 22px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 34px var(--accent-glow), 0 14px 48px rgba(0,0,0,0.4); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); box-shadow: 0 0 20px var(--accent-glow); }
.btn-large { padding: 19px 38px; font-size: 1.05rem; }

/* ===== STATS ===== */
.stats-bar {
  max-width: var(--max-w); margin: 56px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1;
  animation: fadeInUp 0.8s ease 0.9s both;
}
.stat-item { text-align: center; padding: 22px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md); transition: all 0.3s ease; }
.stat-item:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px var(--accent-glow); }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--accent-2); margin-bottom: 4px; }
.stat-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SECTIONS ===== */
.section { padding: 104px 0; position: relative; z-index: 1; }
.section-dark { background: var(--bg-elev); }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em;
  color: var(--accent-2); text-transform: uppercase; margin-bottom: 16px; position: relative;
}
.eyebrow::after { content: ""; display: block; width: 40px; height: 2px; background: var(--accent); margin-top: 10px; border-radius: 2px; box-shadow: 0 0 10px var(--accent-glow); }
.section-header.center .eyebrow::after { margin: 10px auto 0; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; line-height: 1.15; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 16px auto 0; }

.reveal { opacity: 0; transform: translateY(36px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== BRAND GRID ===== */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brand-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.brand-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-glow); }
.brand-card img { width: 100%; height: 140px; object-fit: contain; border-radius: var(--radius-md); margin-bottom: 14px; background: var(--bg-panel); }
.brand-card h3 { font-size: 1.02rem; font-weight: 700; }
.products-cta { text-align: center; margin-top: 44px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.about-media img { width: 100%; border-radius: var(--radius-xl); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.about-copy p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 16px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.about-list li {
  padding-left: 26px; position: relative; color: var(--text-muted); font-size: 0.96rem;
}
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent-glow);
}

/* ===== DELIVERY ===== */
.delivery-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.delivery-facts { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.delivery-fact { display: flex; gap: 16px; align-items: flex-start; }
.delivery-fact-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; background: var(--accent-dim);
  border: 1px solid rgba(224,86,47,0.2); display: grid; place-items: center; color: var(--accent-2);
}
.delivery-fact strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.delivery-fact span { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.delivery-media img { width: 100%; max-width: 380px; margin: 0 auto; display: block; border-radius: var(--radius-xl); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }

/* ===== CTA ===== */
.section-cta { padding: 80px 0 100px; }
.cta-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-panel)); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 50px; display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 40px; align-items: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%); pointer-events: none;
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.cta-copy p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 26px; }
.cta-contacts { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; color: var(--text);
  transition: all 0.3s ease;
}
a.contact-row:hover { border-color: var(--accent); transform: translateX(6px); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.contact-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-dim); display: grid; place-items: center; color: var(--accent-2); flex-shrink: 0; }
.contact-label { font-size: 0.78rem; color: var(--text-dim); font-weight: 700; width: 76px; flex-shrink: 0; }
.contact-val { font-weight: 700; font-size: 0.94rem; }
.contact-address { cursor: default; }
.cta-action { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; z-index: 1; }
.cta-note { font-size: 0.8rem; color: var(--text-dim); text-align: center; }

/* ===== FOOTER ===== */
.site-footer { padding: 44px 0 26px; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 24px; }
.footer-logo { height: 30px; width: auto; margin-bottom: 10px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; max-width: 320px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent-2); }
.footer-copy { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.75rem; color: var(--text-dim); flex-wrap: wrap; gap: 8px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; margin: 0 auto; order: -1; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .delivery-grid { grid-template-columns: 1fr; }
  .delivery-media { order: -1; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-action { align-items: flex-start; }
}
@media (max-width: 640px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 24px; right: 24px; background: var(--bg-card);
    border: 1px solid var(--line); border-radius: var(--radius-md); padding: 12px; flex-direction: column;
    gap: 4px; margin-top: 8px; box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; text-align: center; }
  .menu-toggle { display: flex; }
  .hero { padding-top: 108px; }
  .hero h1 { font-size: 2.1rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 28px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}
