/* ===== Soul Burger — Mobile-first styles ===== */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --yellow: #ffcc00;
  --yellow-dark: #e6a800;
  --yellow-glow: rgba(255, 204, 0, 0.25);
  --white: #f5f5f5;
  --gray: #888;
  --radius: 16px;
  --radius-lg: 24px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

/* Background pattern SVG */
.bg-pattern {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.float-orb {
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-2 {
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  padding-top: max(16px, env(safe-area-inset-top));
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 60%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  animation: logoSpin 20s linear infinite;
}

@keyframes logoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.logo-text span {
  color: var(--yellow);
}

.header-badges {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 420px) {
  .header-badges {
    display: none;
  }
}

.halal-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.35);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  animation: halalGlow 3s ease-in-out infinite;
}

.halal-icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes halalGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 204, 0, 0); }
  50% { box-shadow: 0 0 16px rgba(255, 204, 0, 0.2); }
}

/* Hamburger menu toggle */
.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  background: var(--black-card);
  border: 1px solid rgba(255, 204, 0, 0.15);
  transition: border-color 0.3s;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: var(--black-soft);
  border-left: 1px solid rgba(255, 204, 0, 0.1);
  z-index: 200;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
}

.nav-drawer li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-drawer a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  transition: color 0.2s, padding-left 0.3s;
}

.nav-drawer a:hover,
.nav-drawer a:focus {
  color: var(--yellow);
  padding-left: 8px;
}

.nav-cta {
  display: block;
  margin-top: 32px;
  padding: 16px;
  text-align: center;
  background: var(--yellow);
  color: var(--black) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0 !important;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 120px 20px 40px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 12px;
}

.halal-tag {
  padding: 8px 14px;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 100px;
}

.halal-tag-icon,
.halal-icon--tag {
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.25));
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.accent {
  color: var(--yellow);
}

.hero-desc {
  margin-top: 16px;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 320px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 30px var(--yellow-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 50px var(--yellow-glow);
}

.btn-ghost {
  border: 1px solid rgba(255, 204, 0, 0.3);
  color: var(--yellow);
}

.btn-full {
  width: 100%;
}

/* Hero burger SVG */
.hero-visual {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}

.hero-halal-badge {
  position: absolute;
  top: 0;
  right: calc(50% - min(140px, 40vw));
  z-index: 2;
  animation: badgeFloat 4s ease-in-out infinite;
}

.hero-halal-badge svg,
.halal-icon--badge {
  width: 64px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(255, 204, 0, 0.35));
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}

.burger-hero {
  width: min(280px, 80vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.2));
}

.pulse-ring {
  animation: pulseRing 3s ease-out infinite;
  transform-origin: center;
}

.pulse-ring.delay {
  animation-delay: 1.5s;
}

@keyframes pulseRing {
  0% { r: 90; opacity: 0.4; }
  100% { r: 140; opacity: 0; }
}

.steam path {
  animation: steamRise 2.5s ease-in-out infinite;
}

.steam path:nth-child(2) { animation-delay: 0.4s; }
.steam path:nth-child(3) { animation-delay: 0.8s; }

@keyframes steamRise {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-8px); }
}

.bounce-part {
  animation: bouncePart 3s ease-in-out infinite;
}

.bounce-part.delay-1 { animation-delay: 0.1s; }
.bounce-part.delay-2 { animation-delay: 0.2s; }
.bounce-part.delay-3 { animation-delay: 0.3s; }
.bounce-part.delay-4 { animation-delay: 0.4s; }

@keyframes bouncePart {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.flame {
  animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
  0% { transform: translate(160px, 280px) scale(1); opacity: 0.8; }
  100% { transform: translate(160px, 278px) scale(1.1); opacity: 1; }
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--black-card);
  border: 1px solid rgba(255, 204, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}

.stat span {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-halal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-halal svg,
.stat-halal .halal-icon {
  color: var(--yellow);
}

.stat-halal span {
  font-size: 0.6rem;
  line-height: 1.2;
  max-width: 72px;
}

/* ===== Halal section ===== */
.halal-section {
  padding-top: 0;
}

.halal-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  background: linear-gradient(145deg, #1a1600 0%, var(--black-card) 50%, var(--black) 100%);
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
}

.halal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 204, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.halal-seal {
  position: relative;
  z-index: 1;
}

.halal-seal svg,
.halal-icon--seal {
  width: 128px;
  height: 128px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(255, 204, 0, 0.25));
}

.seal-ring {
  animation: sealSpin 20s linear infinite;
  transform-origin: center;
}

@keyframes sealSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.halal-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.halal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3rem);
  line-height: 1;
  margin-bottom: 16px;
}

.halal-content > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.halal-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.halal-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(255, 204, 0, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 204, 0, 0.1);
}

.section-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.halal-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  margin-bottom: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border-radius: 4px;
}

.halal-label .halal-icon {
  width: 12px;
  height: 12px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 204, 0, 0.15);
}

/* ===== Marquee ===== */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px 0;
  background: var(--yellow);
  color: var(--black);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 12s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.section-head {
  margin-bottom: 32px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 8px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Categories */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 8px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.2s, background 0.3s;
}

.cat-card svg {
  width: 40px;
  height: 40px;
}

.cat-card span {
  font-size: 0.75rem;
  font-weight: 600;
}

.cat-card.active,
.cat-card:hover {
  border-color: var(--yellow);
  background: rgba(255, 204, 0, 0.05);
}

.cat-card:active {
  transform: scale(0.95);
}

/* Hit cards */
.hit-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.hit-card.featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  margin-bottom: 16px;
  border-color: rgba(255, 204, 0, 0.2);
}

.hit-card:hover {
  border-color: rgba(255, 204, 0, 0.3);
}

.hit-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  z-index: 2;
}

.hit-card.featured {
  position: relative;
}

.hit-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  min-height: 140px;
  background: radial-gradient(circle at center, rgba(255,204,0,0.08) 0%, transparent 70%);
  overflow: hidden;
}

.hit-visual img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.menu-sticker {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 2;
}

.menu-sticker--hit {
  background: var(--yellow);
  color: var(--black);
}

.menu-sticker--chef {
  background: #f5e6c8;
  color: #3d2314;
}

.menu-sticker--spicy {
  background: #ff4d4d;
  color: #fff;
}

.menu-item-visual {
  position: relative;
  margin: -16px -16px 12px;
  min-height: 160px;
  background: radial-gradient(circle at center, rgba(255,204,0,0.08) 0%, transparent 70%);
  overflow: hidden;
}

.menu-item-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.menu-item-info .menu-sticker {
  position: static;
  display: inline-flex;
  margin-bottom: 8px;
}

.hit-visual svg {
  width: 120px;
  height: 120px;
  animation: hitFloat 4s ease-in-out infinite;
}

@keyframes hitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hit-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hit-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hit-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.hit-footer {
  display: flex;
  align-items: center;
}

.price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
}

.btn-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-add:active {
  transform: scale(0.9);
}

.btn-add.added {
  animation: addPop 0.4s ease;
}

@keyframes addPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); box-shadow: 0 0 20px var(--yellow-glow); }
  100% { transform: scale(1); }
}

.hit-grid {
  display: grid;
  gap: 12px;
}

.hit-card.compact {
  padding: 0;
}

.hit-card.compact .hit-info {
  padding: 20px;
}

/* About */
.about-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(255, 204, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  overflow: hidden;
}

.about-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  opacity: 0.5;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 3rem);
  line-height: 1;
  margin-bottom: 16px;
}

.about-card > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Order */
.order-card {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, var(--black-card) 0%, #1f1800 100%);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  overflow: hidden;
}

.order-flames {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.4;
}

.flame-group path {
  animation: flameWave 1.5s ease-in-out infinite alternate;
}

.flame-group path:nth-child(odd) { animation-delay: 0.2s; }
.flame-group path:nth-child(even) { animation-delay: 0.5s; }

@keyframes flameWave {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(1.15); }
}

.order-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3rem);
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
}

.order-card > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
  position: relative;
}

.order-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* Contact */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(255, 204, 0, 0.2);
}

.contact-card strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

.contact-card a {
  color: var(--yellow);
  text-decoration: none;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px calc(100px + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  opacity: 0.6;
}

.footer p {
  font-size: 0.75rem;
  color: var(--gray);
}

.footer-halal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.8rem !important;
  font-weight: 700;
  color: var(--yellow) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* FAB */
.fab {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  right: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px var(--yellow-glow);
  animation: fabPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}

.fab:active {
  transform: scale(0.92);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 24px var(--yellow-glow); }
  50% { box-shadow: 0 4px 40px rgba(255, 204, 0, 0.5); }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Tablet+ ===== */
@media (min-width: 640px) {
  .header-badges {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: 16px;
  }

  .halal-banner {
    flex-direction: row;
    text-align: left;
    padding: 40px;
  }

  .halal-content {
    text-align: left;
  }

  .halal-seal svg,
  .halal-icon--seal {
    width: 140px;
    height: 140px;
  }

  .hero {
    padding: 140px 40px 60px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .section {
    padding: 80px 40px;
    max-width: 640px;
    margin: 0 auto;
  }

  .hit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0 40px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .hero-stats {
    grid-column: 1;
    grid-row: 2;
  }

  .section {
    max-width: 900px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
