@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&family=Gloria+Hallelujah&display=swap');

:root {
  --red: #E8321A;
  --red-dark: #c42a14;
  --red-light: #ff5a3c;
  --orange: #F5A623;
  --cream: #FFF8EE;
  --cream-dark: #F5ECD8;
  --black: #0F0D0B;
  --charcoal: #1A1714;
  --brown: #2C2016;
  --white: #FFFFFF;
  --green: #1E7A3C;
  --green-light: #27AE60;
  --green-pale: #E8F5EC;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.25);
  --border: rgba(255,255,255,0.08);
  --nav-h: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── SCROLLING TICKER ── */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 2px solid var(--red-dark);
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 0 28px;
}
.ticker-item .star { color: rgba(255,255,255,0.5); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all 0.3s;
  background: transparent;
}
nav.scrolled {
  background: rgba(15,13,11,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.btn-call {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-call:hover { border-color: var(--orange); color: var(--orange); }
.btn-nav-order {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-order:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.12em;
  padding: 16px 36px; border-radius: 8px; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 20px rgba(232,50,26,0.4); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 8px 32px rgba(232,50,26,0.5); }
.btn-cream { background: var(--cream); color: var(--black); }
.btn-cream:hover { background: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-green { background: var(--green-light); color: #fff; box-shadow: 0 4px 20px rgba(39,174,96,0.35); }
.btn-green:hover { background: var(--green); box-shadow: 0 8px 32px rgba(39,174,96,0.5); }

/* ── SECTION UTILITIES ── */
.section { padding: 100px 40px; }
.section-sm { padding: 60px 40px; }
.container { max-width: 1240px; margin: 0 auto; }
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px; display: block;
}
.eyebrow-green { color: var(--green-light); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  letter-spacing: 0.02em; line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-body { color: var(--text-muted); font-size: 17px; line-height: 1.75; max-width: 540px; }

/* ── PAGE HEADER ── */
.page-header {
  padding: calc(var(--nav-h) + 80px) 40px 80px;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,50,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-header .eyebrow { margin-bottom: 8px; }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 8vw, 100px); letter-spacing: 0.02em; line-height: 0.92; }
.page-header p { color: var(--text-muted); font-size: 18px; margin-top: 16px; max-width: 560px; }

/* ── PILL / BADGE ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 0.1em;
}
.pill-halal { background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.35); color: var(--orange); }
.pill-gf { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #5BE88A; }
.pill-red { background: rgba(232,50,26,0.12); border: 1px solid rgba(232,50,26,0.3); color: var(--red-light); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}
.trust-item .td { width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.trust-div { width: 1px; height: 14px; background: var(--border); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 36px; cursor: pointer; line-height: 1; }

/* ── FOOTER ── */
footer { background: var(--charcoal); border-top: 1px solid var(--border); padding: 72px 40px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; max-width: 1240px; margin: 0 auto 48px; }
.footer-logo img { height: 56px; margin-bottom: 16px; }
.footer-logo p { color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.4); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-hours p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 2; }
.open-badge { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 0.15em; color: #5BE88A; }
.open-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.footer-contact p { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--red); color: var(--red); }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 13px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideRight { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:translateX(0); } }
.anim-up { opacity:0; animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.25s; } .d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; } .d5 { animation-delay: 0.7s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 24px; }
  .page-header { padding: calc(var(--nav-h) + 48px) 24px 56px; }
  .trust-bar { padding: 14px 24px; gap: 16px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 20px; }
}

/* ── CREAM PAGE HEADERS (inner pages) ── */
.page-header[style*="cream"] .eyebrow { color: var(--red); }
.page-header[style*="cream"] h1 { color: var(--black); }
.page-header[style*="cream"] p { color: rgba(0,0,0,0.5); }
.page-header[style*="cream"]::before {
  background: radial-gradient(ellipse, rgba(232,50,26,0.08) 0%, transparent 65%);
}

/* ── INNER PAGE NAV consistent ── */
nav.scrolled { background: rgba(15,13,11,0.97) !important; }

/* ── INNER PAGE SECTIONS on cream ── */
.inner-section-cream {
  background: var(--cream);
  padding: 80px 40px;
}
.inner-section-white {
  background: #fff;
  padding: 80px 40px;
}

/* ── INNER PAGE NAV — dark text on cream headers ── */
.page-inner nav:not(.scrolled) .nav-links a {
  color: rgba(0,0,0,0.6);
}
.page-inner nav:not(.scrolled) .nav-links a:hover,
.page-inner nav:not(.scrolled) .nav-links a.active {
  color: var(--black);
}
.page-inner nav:not(.scrolled) .btn-call {
  color: rgba(0,0,0,0.5);
  border-color: rgba(0,0,0,0.2);
}
.page-inner nav:not(.scrolled) .btn-call:hover {
  color: var(--red);
  border-color: var(--red);
}
/* Hamburger dark on light bg */
.page-inner nav:not(.scrolled) .nav-hamburger span {
  background: var(--black);
}
/* Logo legibility on cream */
.page-inner nav:not(.scrolled) { background: rgba(255,248,238,0.9); backdrop-filter: blur(12px); }

/* ── AWARD #1 visual fix ── */
.award-visual { display:flex; flex-direction:column; align-items:center; justify-content:center; }
.award-num { letter-spacing:-0.02em; }

/* ── MOBILE NAV + TICKER FIX ── */
@media (max-width: 960px) {
  .ticker {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 300;
    height: 36px;
  }
  .ticker .ticker-item {
    font-size: 12px;
    padding: 0 20px;
  }
  nav {
    top: 36px !important;
    height: 64px;
    padding: 0 20px;
  }
  nav.scrolled {
    top: 0 !important;
  }
  .nav-logo img {
    height: 42px;
  }
  /* Hero starts below ticker + nav */
  .hero {
    margin-top: 0 !important;
    padding-top: calc(36px + 64px);
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 32px;
  }
  /* Inner pages */
  .page-header {
    padding-top: calc(36px + 64px + 40px) !important;
  }
}

@media (max-width: 960px) {
  /* Nav scroll behavior override for mobile */
  nav[style*="top:40px"] {
    top: 36px !important;
  }
}
