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

:root {
  --bg: #fff7e8;
  --bg-soft: #fff2d8;
  --surface: rgba(255,255,255,0.78);
  --white: #ffffff;
  --text: #4c2814;
  --muted: #7a553c;
  --primary: #ff7a18;
  --primary-2: #ffb347;
  --red: #db3424;
  --brown: #5c2b12;
  --shadow: 0 20px 50px rgba(123, 65, 16, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.25), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.22), transparent 22%),
    linear-gradient(180deg, #fffaf1 0%, #fff2dd 100%);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("assets/snack-pattern.svg");
  background-size: 360px;
  background-repeat: repeat;
  z-index: -1;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section { padding: 92px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: "Baloo 2", cursive;
  line-height: 1.02;
  margin: 0 0 12px;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); }
h1 span {
  color: var(--primary);
  text-shadow: 0 6px 18px rgba(255, 122, 24, 0.18);
}
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.55rem; }
p { margin: 0; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 241, 0.8);
  border-bottom: 1px solid rgba(255, 122, 24, 0.08);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.brand strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Baloo 2", cursive;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.nav-links a:not(.btn) {
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--red));
}

.btn-secondary {
  background: rgba(255,255,255,0.86);
  color: var(--brown);
  border: 1px solid rgba(92, 43, 18, 0.08);
}

.full-width { width: 100%; }

.hero {
  position: relative;
  padding: 72px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-copy p {
  max-width: 640px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stat-card {
  min-width: 140px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.15rem;
  font-family: "Baloo 2", cursive;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.glass {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.48);
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(100%, 490px);
  border-radius: 34px;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.hero-card img {
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff4df, #ffe8c1);
}

.hero-card-content {
  padding: 16px 8px 8px;
}

.badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.food-orbit {
  position: absolute;
  width: 154px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  animation: float 4.6s ease-in-out infinite;
}

.food-orbit img { width: 100%; height: 100%; object-fit: contain; }

.orbit-1 { top: 12%; right: 0; animation-delay: 0.2s; }
.orbit-2 { left: 0; bottom: 11%; animation-delay: 1.2s; }
.orbit-3 { top: 2%; left: 10%; animation-delay: 0.8s; }

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.menu-grid, .features-grid, .gallery-grid {
  display: grid;
  gap: 22px;
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.96));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(123, 65, 16, 0.18);
}

.menu-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #fff4dd, #ffe5b3);
}

.menu-card-body { padding: 22px; }

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow);
}

.icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 14px;
  font-size: 1.65rem;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.2), rgba(255, 122, 24, 0.18));
}

.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 26px;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.about-visual {
  padding: 18px;
  border-radius: 34px;
}

.about-visual img {
  border-radius: 26px;
  background: linear-gradient(135deg, #fff0d4, #ffe1af);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-pills span,
.coming-soon {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  color: var(--brown);
  font-weight: 800;
}

.franchise-wrap {
  padding: 28px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.franchise-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 12px;
}

.franchise-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-weight: 600;
}

.franchise-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.franchise-card img {
  width: 100%;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff0d8, #ffe5ba);
}

.franchise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.gallery-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.gallery-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
  background: linear-gradient(135deg, #fff0d2, #ffe1ae);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.contact-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list span {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  color: var(--brown);
  font-weight: 700;
}

.map-card {
  border-radius: 30px;
  padding: 18px;
}

.map-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.map-placeholder {
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff0d4, #ffdba0);
}

.site-footer {
  padding-top: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255, 234, 204, 0.88));
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  padding: 32px 0;
}

.footer-brand { margin-bottom: 14px; }
.footer-text { max-width: 420px; }

.site-footer h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-bottom {
  padding: 18px 16px 28px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 122, 24, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #15b350);
  color: white;
  font-weight: 800;
  box-shadow: 0 20px 50px rgba(24, 153, 81, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .franchise-wrap,
  .contact-grid,
  .footer-grid,
  .menu-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .gallery-card:last-child {
    grid-column: span 2;
  }

  .hero-visual { min-height: 480px; }
}

@media (max-width: 760px) {
  .section { padding: 74px 0; }
  .menu-toggle { display: inline-grid; place-items: center; }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: rgba(255,250,241,0.98);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .hero-grid,
  .about-grid,
  .franchise-wrap,
  .contact-grid,
  .footer-grid,
  .menu-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-card:last-child {
    grid-column: auto;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .food-orbit {
    width: 110px;
    padding: 12px;
  }

  .orbit-1 { top: 3%; right: 2%; }
  .orbit-2 { left: 0; bottom: 4%; }
  .orbit-3 { top: -1%; left: 4%; }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 13px 16px;
  }
}
