:root {
  --red: #c8151b;
  --red-dark: #9e0e13;
  --gold: #f5a623;
  --gold-dark: #d4851a;
  --cream: #fff8ee;
  --white: #ffffff;
  --stripe: 145deg;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: #1a1a1a; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--red-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 62px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.4);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--gold); letter-spacing: 3px; text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 80px 2rem 2rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(var(--stripe), transparent, transparent 28px, rgba(0,0,0,0.08) 28px, rgba(0,0,0,0.08) 56px);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--red-dark);
  font-weight: 900; font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 2px; margin-bottom: 1.5rem; transform: rotate(-1deg);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem); color: var(--gold); line-height: 0.9;
  text-shadow: 4px 4px 0 var(--red-dark), 8px 8px 0 rgba(0,0,0,0.2);
  letter-spacing: 4px; animation: heroIn .6s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.6rem); color: var(--white);
  letter-spacing: 7px; margin: 0.5rem 0 2rem; animation: heroIn .6s .15s ease both;
}
.hero-desc {
  color: rgba(255,255,255,0.88); font-size: 1.1rem; line-height: 1.75;
  max-width: 540px; margin: 0 auto 2.5rem; animation: heroIn .6s .25s ease both;
}
.cta-group {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; animation: heroIn .6s .35s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 4px; text-decoration: none;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--red-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); }

.fry { position: absolute; width: 6px; border-radius: 3px; background: var(--gold); animation: floatFry linear infinite; }
@keyframes floatFry {
  from { transform: translateY(110vh) rotate(var(--r)); opacity: 0.15; }
  to   { transform: translateY(-10vh) rotate(calc(var(--r) + 40deg)); opacity: 0; }
}

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.section-label {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem;
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1; letter-spacing: 2px;
}

/* ── HOW ── */
.how { background: var(--white); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 4rem; }
.how-header h2 { color: var(--red); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step {
  padding: 2rem; border-radius: 8px; background: var(--cream);
  border-top: 5px solid var(--gold); transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(200,21,27,0.1); }
.step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  color: var(--red); line-height: 1; margin-bottom: 0.8rem;
}
.step-icon {
  width: 44px; height: 44px; background: var(--red);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.step-icon svg { color: var(--white); }
.step h3 { font-weight: 900; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--red-dark); }
.step p { font-size: 0.93rem; color: #444; line-height: 1.65; }

/* ── MENU ── */
.menu-section { background: var(--red); position: relative; overflow: hidden; }
.menu-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(var(--stripe), transparent, transparent 28px, rgba(0,0,0,0.07) 28px, rgba(0,0,0,0.07) 56px);
}
.menu-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.menu-header { text-align: center; margin-bottom: 3rem; }
.menu-header h2 { color: var(--gold); }
.menu-header .section-label { color: rgba(255,255,255,0.65); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.menu-card {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 2rem; transition: background .2s, transform .2s, border-color .2s;
}
.menu-card:hover { background: rgba(0,0,0,0.35); transform: translateY(-4px); border-color: rgba(245,166,35,0.6); }
.menu-card-icon {
  width: 52px; height: 52px; background: var(--gold);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.menu-card-icon svg { color: var(--red-dark); }
.menu-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem;
  color: var(--gold); letter-spacing: 1px; margin-bottom: 0.5rem;
}
.menu-card p { color: rgba(255,255,255,0.95); font-size: 0.97rem; line-height: 1.7; }

/* ── WHY ── */
.why { background: var(--cream); }
.why-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-text h2 { color: var(--red); margin-bottom: 2rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; font-size: 0.97rem; color: #222; line-height: 1.65; }
.why-icon {
  width: 36px; height: 36px; background: var(--red);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-icon svg { color: var(--white); }

.why-visual {
  background: var(--red); border-radius: 16px; overflow: hidden;
  position: relative; padding: 3rem 2rem; text-align: center;
}
.why-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(var(--stripe), transparent, transparent 18px, rgba(0,0,0,0.08) 18px, rgba(0,0,0,0.08) 36px);
}
.stat-block { position: relative; z-index: 2; }
.stat { margin-bottom: 2.2rem; }
.stat:last-child { margin-bottom: 0; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem;
  color: var(--gold); line-height: 1; text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
.stat-label { color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.8rem; letter-spacing: 2.5px; text-transform: uppercase; }

/* ── LOCATION ── */
.location { background: var(--white); text-align: center; }
.location-inner { max-width: 680px; margin: 0 auto; }
.location h2 { color: var(--red); margin-bottom: 1rem; }
.location-desc { color: #555; line-height: 1.75; margin-bottom: 2.5rem; font-size: 1rem; }
.map-embed { width: 100%; height: 300px; border-radius: 12px; margin-bottom: 1.5rem; border: none; display: block; background: #eee; }

.address-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.4rem; align-items: center; text-align: left;
  background: var(--red-dark); border-radius: 12px; padding: 1.8rem 2rem;
  position: relative; overflow: hidden;
}
.address-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(var(--stripe), transparent, transparent 18px, rgba(255,255,255,0.04) 18px, rgba(255,255,255,0.04) 36px);
}
.address-card > * { position: relative; z-index: 1; }
.address-icon {
  width: 52px; height: 52px; background: var(--gold);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.address-icon svg { color: var(--red-dark); }
.address-info strong {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 1px; color: var(--gold); margin-bottom: 5px;
}
.address-info span { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.65; }

/* ── CONTACT ── */
.contact { background: var(--red-dark); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(var(--stripe), transparent, transparent 28px, rgba(0,0,0,0.1) 28px, rgba(0,0,0,0.1) 56px);
}
.contact-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.contact h2 { color: var(--gold); margin-bottom: 1rem; }
.contact .section-label { color: rgba(255,255,255,0.55); }
.contact-desc { color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.75; }
.contact-cards { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.contact-card {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 1.5rem 2rem; min-width: 170px;
  transition: background .2s; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.contact-card:hover { background: rgba(255,255,255,0.16); }
.cc-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.cc-icon svg { color: var(--gold); }
.cc-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cc-val { font-weight: 900; font-size: 0.95rem; color: var(--white); }
.cc-val a { color: var(--gold); text-decoration: none; }
.cc-val a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: #111; color: rgba(255,255,255,0.38); text-align: center; padding: 2rem; font-size: 0.82rem; }
footer strong { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
