/* ===================================================================
   QUICK COOK — fast-food campaign stylesheet
   Single font: Poppins · Palette: charcoal / red / orange / cream
   =================================================================== */

:root {
  --charcoal: #161311;
  --charcoal-2: #1f1b18;
  --charcoal-3: #2a2421;
  --red: #ff2e2e;
  --red-deep: #d61414;
  --orange: #ff7a1a;
  --orange-soft: #ffb347;
  --cream: #fff4e6;
  --cream-2: #fde9d2;
  --ink: #14110f;
  --muted: #8a817a;
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, .45);
  --shadow-red: 0 18px 40px -14px rgba(255, 46, 46, .55);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

.hl { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-weight: 700; font-size: 1rem;
  padding: .95rem 1.8rem;
  border-radius: 100px;
  cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(120deg, var(--red), var(--orange));
  color: #fff; box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 26px 50px -14px rgba(255,46,46,.7); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(255,244,230,.4);
}
.btn-ghost:hover { background: rgba(255,244,230,.1); transform: translateY(-3px); }
.btn.big { padding: 1.15rem 2.6rem; font-size: 1.15rem; }
.btn.full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22,19,17,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }

.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff; font-weight: 900; font-size: 1.4rem;
  border-radius: 12px; box-shadow: var(--shadow-red);
  transform: rotate(-6deg);
}
.logo-text { font-weight: 900; font-size: 1.35rem; color: var(--cream); letter-spacing: -.02em; line-height: 1; }
.logo-text span { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { color: var(--cream); font-weight: 500; font-size: .98rem; position: relative; transition: color .2s; }
.nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--red); transition: width .25s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--orange); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(120deg, var(--red), var(--orange));
  padding: .6rem 1.3rem; border-radius: 100px; font-weight: 700;
  box-shadow: var(--shadow-red);
}
.nav-cta:hover { transform: translateY(-2px); }

.burger-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger-btn span { width: 26px; height: 3px; background: var(--cream); border-radius: 3px; transition: .3s; }
.burger-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: .3rem;
  background: var(--charcoal-2); padding: 1rem 6%;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a { color: var(--cream); padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.05); font-weight: 500; }
.mobile-menu .nav-cta { text-align: center; border: none; margin-top: .6rem; }
.mobile-menu.show { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 80% 0%, var(--charcoal-3) 0%, var(--charcoal) 55%);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) 0 0;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 12%; left: -2%;
  font-weight: 900; font-size: clamp(5rem, 18vw, 16rem);
  color: rgba(255,255,255,.03); white-space: nowrap; letter-spacing: -.03em;
  pointer-events: none; user-select: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,122,26,.15); color: var(--orange-soft);
  border: 1px solid rgba(255,122,26,.35);
  padding: .4rem 1rem; border-radius: 100px; font-weight: 600; font-size: .85rem;
}
.kicker i { width: 9px; height: 9px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,46,46,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,46,46,.6);} 70%{box-shadow:0 0 0 12px rgba(255,46,46,0);} 100%{box-shadow:0 0 0 0 rgba(255,46,46,0);} }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900; line-height: .95; letter-spacing: -.03em;
  margin: 1.2rem 0 1.1rem;
}
.hero h1 .outline {
  color: transparent; -webkit-text-stroke: 2px var(--orange);
}
.hero h1 .hl { color: var(--red); }
.hero-copy p { color: rgba(255,244,230,.75); font-size: 1.12rem; max-width: 33ch; }
.hero-actions { display: flex; gap: 1rem; margin: 1.8rem 0; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2.4rem; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-stats strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero-stats span { font-size: .85rem; color: rgba(255,244,230,.6); }

/* hero media */
.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: 50%;
  aspect-ratio: 1; max-width: 460px; margin-inline: auto;
  overflow: hidden; border: 8px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }

.hero-float {
  position: absolute; background: var(--cream); color: var(--ink);
  border-radius: 18px; padding: .55rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: .9rem;
}
.hero-float img { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; }
.hero-float span { padding-right: .6rem; }
.float-1 { bottom: 6%; left: -4%; animation: floaty 5s ease-in-out infinite; }
.float-2 { top: 8%; right: -6%; animation: floaty 5.5s ease-in-out infinite .5s; }

.hero-badge {
  position: absolute; top: -6px; left: 44%;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center; text-align: center;
  font-weight: 900; font-size: .85rem; line-height: 1.1;
  box-shadow: var(--shadow-red);
  animation: spinwobble 8s linear infinite;
}
@keyframes spinwobble { 0%{transform:rotate(-10deg);} 50%{transform:rotate(10deg);} 100%{transform:rotate(-10deg);} }

/* marquee */
.marquee {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--red); color: #fff;
  padding: .85rem 0; overflow: hidden;
  transform: rotate(-1.2deg) scale(1.04);
}
.marquee-track { display: flex; gap: 1.5rem; align-items: center; width: max-content; animation: scroll 28s linear infinite; }
.marquee-track span { font-weight: 800; font-size: 1.2rem; letter-spacing: .02em; white-space: nowrap; }
.marquee-track .dot { color: var(--charcoal); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); }
.section-head h2 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 900;
  letter-spacing: -.02em; line-height: 1; margin: .6rem 0;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.light p { color: rgba(255,244,230,.7); }
.section-head.light h2 { color: var(--cream); }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .18em; color: var(--red);
}

.price { font-weight: 800; color: var(--red); font-size: 1.15rem; }
.tag {
  display: inline-block; background: var(--charcoal); color: var(--cream);
  font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem;
}
.tag-hot { background: linear-gradient(120deg, var(--red), var(--orange)); }

/* ---------- Signature ---------- */
.signature { background: var(--cream); }
.signature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; grid-auto-rows: 1fr;
}
.sig-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 14px 40px -22px rgba(0,0,0,.3);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid rgba(0,0,0,.04);
}
.sig-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.sig-card.big { grid-row: span 2; grid-column: span 1; }
.sig-card.wide { grid-column: span 2; flex-direction: row; }
.sig-img { overflow: hidden; }
.sig-card.big .sig-img { flex: 1; }
.sig-card.wide .sig-img { width: 48%; }
.sig-img img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; transition: transform .6s var(--ease); }
.sig-card.big .sig-img img { min-height: 320px; }
.sig-card:hover .sig-img img { transform: scale(1.08); }
.sig-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.sig-card.wide .sig-body { justify-content: center; }
.sig-body h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.01em; }
.sig-body p { color: var(--muted); font-size: .95rem; margin: .4rem 0 1rem; }
.sig-body .price { margin-top: auto; }

/* ---------- Combos ---------- */
.combos { background: var(--charcoal); }
.combo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.combo-card {
  background: var(--charcoal-2); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .35s var(--ease), border-color .3s;
}
.combo-card:hover { transform: translateY(-8px); border-color: rgba(255,122,26,.5); }
.combo-img { aspect-ratio: 4/3; overflow: hidden; }
.combo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.combo-card:hover .combo-img img { transform: scale(1.08); }
.combo-info { padding: 1.2rem 1.3rem 1.4rem; color: var(--cream); }
.combo-info h3 { font-size: 1.18rem; font-weight: 800; }
.combo-info p { color: rgba(255,244,230,.6); font-size: .9rem; margin: .3rem 0 1rem; }
.combo-foot { display: flex; align-items: center; justify-content: space-between; }
.mini-btn {
  background: linear-gradient(120deg, var(--red), var(--orange)); color: #fff;
  font-weight: 700; font-size: .85rem; padding: .45rem 1.1rem; border-radius: 100px;
  transition: transform .2s;
}
.mini-btn:hover { transform: scale(1.08); }

/* ---------- Fresh ---------- */
.fresh { background: var(--cream-2); }
.fresh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.fresh-media { position: relative; }
.fresh-main { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.fresh-sub {
  position: absolute; bottom: -28px; right: -22px;
  width: 45%; border-radius: var(--radius); border: 6px solid var(--cream-2);
  box-shadow: var(--shadow); aspect-ratio: 1; object-fit: cover;
}
.fresh-copy h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.02; letter-spacing: -.02em; margin: .6rem 0 1rem; }
.fresh-copy > p { color: #6b5f55; font-size: 1.05rem; margin-bottom: 1.4rem; }
.fresh-list { display: grid; gap: .85rem; margin-bottom: 1.8rem; }
.fresh-list li { position: relative; padding-left: 2rem; color: #4d433b; }
.fresh-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(120deg, var(--red), var(--orange)); color: #fff;
  display: grid; place-items: center; font-size: .75rem; font-weight: 800;
}
.fresh-list strong { color: var(--ink); }

/* ---------- Quick service ---------- */
.quick { background: var(--charcoal); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quick-step {
  background: var(--charcoal-2); border-radius: var(--radius); padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.06); position: relative; color: var(--cream);
  transition: transform .35s var(--ease);
}
.quick-step:hover { transform: translateY(-8px); }
.step-num {
  position: absolute; top: 1.2rem; right: 1.3rem;
  font-size: 2.4rem; font-weight: 900; color: rgba(255,122,26,.25);
}
.quick-img { aspect-ratio: 16/10; border-radius: 16px; overflow: hidden; margin-bottom: 1.1rem; }
.quick-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.quick-step:hover .quick-img img { transform: scale(1.08); }
.quick-step h3 { font-size: 1.3rem; font-weight: 800; }
.quick-step p { color: rgba(255,244,230,.6); font-size: .95rem; margin-top: .35rem; }

/* ---------- Favorites ---------- */
.favorites { background: var(--cream); }
.fav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.fav-card {
  background: var(--white); border-radius: var(--radius); padding: 1rem 1rem 1.6rem;
  box-shadow: 0 14px 40px -24px rgba(0,0,0,.35); text-align: center;
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.fav-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.fav-img { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 1.1rem; }
.fav-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.fav-card:hover .fav-img img { transform: scale(1.08); }
.rank {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff; font-weight: 900; font-size: 1rem;
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  box-shadow: var(--shadow-red); transform: rotate(-8deg);
}
.fav-card h3 { font-size: 1.25rem; font-weight: 800; }
.stars { color: var(--orange); letter-spacing: 2px; margin: .3rem 0 .6rem; }
.fav-card p { color: var(--muted); font-size: .95rem; font-style: italic; }

/* ---------- Menu ---------- */
.menu { background: var(--charcoal); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-item {
  background: var(--charcoal-2); border-radius: var(--radius); padding: 1rem 1rem 1.4rem;
  border: 1px solid rgba(255,255,255,.06); color: var(--cream);
  transition: transform .35s var(--ease), border-color .3s;
}
.menu-item:hover { transform: translateY(-6px); border-color: rgba(255,46,46,.5); }
.menu-img { aspect-ratio: 16/10; border-radius: 14px; overflow: hidden; margin-bottom: 1rem; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.menu-item:hover .menu-img img { transform: scale(1.08); }
.menu-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.menu-row h3 { font-size: 1.12rem; font-weight: 800; }
.menu-item p { color: rgba(255,244,230,.6); font-size: .9rem; margin-top: .3rem; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(120deg, var(--red), var(--orange));
  text-align: center; padding: clamp(3rem, 7vw, 5rem) 0; color: #fff;
}
.cta-inner h2 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -.02em; }
.cta-inner p { font-size: 1.15rem; margin: .6rem 0 1.8rem; opacity: .95; }
.cta-strip .btn-primary { background: var(--charcoal); box-shadow: 0 18px 40px -14px rgba(0,0,0,.5); }
.cta-strip .btn-primary:hover { background: var(--ink); }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-copy h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -.02em; line-height: 1; margin: .5rem 0; }
.contact-copy > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.c-card {
  display: flex; align-items: center; gap: .85rem;
  background: var(--white); border-radius: 16px; padding: 1rem 1.1rem;
  border: 1px solid rgba(0,0,0,.05); box-shadow: 0 10px 30px -22px rgba(0,0,0,.3);
  transition: transform .25s var(--ease);
}
a.c-card:hover { transform: translateY(-4px); }
.c-ico { font-size: 1.5rem; flex-shrink: 0; }
.c-card strong { display: block; font-size: .95rem; }
.c-card span { font-size: .88rem; color: var(--muted); }

.contact-form {
  background: var(--charcoal); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); color: var(--cream); box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.2rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: rgba(255,244,230,.75); }
.field input, .field textarea {
  width: 100%; background: var(--charcoal-3); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: .85rem 1rem; color: var(--cream);
  font-family: inherit; font-size: .98rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,244,230,.35); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,26,.2); }
.field textarea { resize: vertical; }
.form-note { margin-top: 1rem; color: var(--orange-soft); font-weight: 600; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-brand p { color: rgba(255,244,230,.55); font-size: .92rem; margin-top: 1rem; max-width: 34ch; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--orange); }
.footer-col a, .footer-col span { display: block; color: rgba(255,244,230,.6); font-size: .92rem; padding: .25rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem; color: rgba(255,244,230,.5); flex-wrap: wrap; gap: .8rem;
}
.footer-bottom a { color: rgba(255,244,230,.7); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy p { max-width: none; }
  .hero-photo { max-width: 380px; }
  .signature-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-card.big { grid-row: auto; }
  .sig-card.wide { grid-column: span 2; }
  .combo-grid { grid-template-columns: repeat(2, 1fr); }
  .fresh-grid { grid-template-columns: 1fr; }
  .quick-grid, .fav-grid, .menu-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .signature-grid, .combo-grid, .quick-grid, .fav-grid, .menu-grid { grid-template-columns: 1fr; }
  .sig-card.wide { grid-column: auto; flex-direction: column; }
  .sig-card.wide .sig-img { width: 100%; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .float-1 { left: 0; }
  .float-2 { right: 0; }
  .hero-badge { left: 50%; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
