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

:root {
  --red: #e53935;
  --orange: #ff9800;
  --gold: #ffc107;
  --cream: #fffdf8;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #888;
  --light-gray: #f5f3ee;
  --radius: 20px;
  --radius-lg: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-pizza {
  width: 80px;
  height: 80px;
  font-size: 72px;
  line-height: 1;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 99px;
  transition: width 0.05s linear;
}
.loader-text {
  font-family: "Space Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.nav-logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.4s;
}
nav.scrolled .nav-logo {
  color: var(--dark);
}
.nav-logo span {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
nav.scrolled .nav-links a {
  color: var(--gray);
}
.nav-links a:hover {
  color: var(--red) !important;
}
.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: #c62828 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.35) !important;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  background: #000;
}
/* Animated GIF */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gif {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  transform: scale(1.05);

  will-change: transform;

  user-select: none;
  pointer-events: none;

  animation: heroZoom 20s ease-in-out infinite alternate;
}
/* Cinematic Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.45) 70%,
      rgba(0, 0, 0, 0.75)
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.7)
    );
}

/* Glow */

.hero-glow {
  z-index: 2;
}
/* Floating Ingredients */

.floating-ingredients {
  z-index: 3;
}

/* Content */

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-stats {
  position: absolute;
  z-index: 5;
}

.scroll-hint {
  z-index: 5;
}

/* #hero {
    height: 100vh; min-height: 600px;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: var(--dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, #3a1200 0%, #1a0800 40%, #0d0d0d 100%);
  } */
.hero-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(229, 57, 53, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
  to {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

.floating-ingredients {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fi {
  position: absolute;
  font-size: 2rem;
  animation: float-random 6s ease-in-out infinite;
  opacity: 0.4;
}
.fi:nth-child(1) {
  top: 15%;
  left: 8%;
  font-size: 1.5rem;
  animation-delay: 0s;
  animation-duration: 7s;
}
.fi:nth-child(2) {
  top: 70%;
  left: 5%;
  font-size: 2.5rem;
  animation-delay: 1s;
  animation-duration: 5s;
}
.fi:nth-child(3) {
  top: 25%;
  right: 8%;
  font-size: 1.8rem;
  animation-delay: 2s;
  animation-duration: 6s;
}
.fi:nth-child(4) {
  top: 80%;
  right: 6%;
  font-size: 1.4rem;
  animation-delay: 0.5s;
  animation-duration: 8s;
}
.fi:nth-child(5) {
  top: 50%;
  left: 3%;
  font-size: 2rem;
  animation-delay: 3s;
  animation-duration: 5.5s;
}
.fi:nth-child(6) {
  top: 10%;
  right: 20%;
  font-size: 1.2rem;
  animation-delay: 1.5s;
  animation-duration: 7.5s;
}
.fi:nth-child(7) {
  top: 85%;
  left: 20%;
  font-size: 1.6rem;
  animation-delay: 2.5s;
  animation-duration: 6.5s;
}
.fi:nth-child(8) {
  top: 35%;
  right: 3%;
  font-size: 2.2rem;
  animation-delay: 0.8s;
  animation-duration: 9s;
}
@keyframes float-random {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-18px) rotate(8deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fade-up 0.8s ease both 0.3s;
}
.hero-h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: white;
  margin-bottom: 20px;
  animation: fade-up 0.8s ease both 0.5s;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fade-up 0.8s ease both 0.7s;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease both 0.9s;
}
.btn-primary {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 99px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.3s,
    background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(229, 57, 53, 0.4);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 14px 32px;
  border-radius: 99px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 48px;
  animation: fade-up 0.8s ease both 1.1s;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fade-in 1s ease both 1.5s;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── PIZZA STORY ── */
#story {
  background: var(--dark);
  padding: 80px 48px 120px;
  text-align: center;
}
.story-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.story-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  font-weight: 700;
  margin-bottom: 64px;
}
.pizza-builder {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 64px;
}
.pizza-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 260px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.pizza-layer.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.ingredient-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.ingredient-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s,
    transform 0.3s;
  cursor: default;
}
.ingredient-step.active {
  background: rgba(229, 57, 53, 0.12);
  border-color: rgba(229, 57, 53, 0.3);
  color: white;
  transform: scale(1.04);
}
.ingredient-step .icon {
  font-size: 1.4rem;
}

/* ── MENU ── */
#menu {
  padding: 100px 48px;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
}
.section-sub {
  color: var(--gray);
  margin-top: 10px;
  font-size: 0.9rem;
}

.menu-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 99px;
  border: 1.5px solid #e0ddd5;
  background: transparent;
  color: var(--gray);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.menu-card-img {
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}
.menu-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.menu-card-body {
  padding: 20px;
}
.menu-card-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 16px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}
.add-btn {
  background: var(--red);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.add-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

/* ── WHY US ── */
#why {
  padding: 100px 48px;
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.why-card:hover {
  background: rgba(229, 57, 53, 0.1);
  border-color: rgba(229, 57, 53, 0.25);
  transform: translateY(-6px);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.why-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.why-desc {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ── SPECIALS ── */
#specials {
  padding: 100px 0 100px 48px;
  background: var(--cream);
  overflow: hidden;
}
.specials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-right: 48px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.specials-track::-webkit-scrollbar {
  display: none;
}
.special-card {
  min-width: 300px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.special-card:hover {
  transform: translateY(-6px);
}
.special-img {
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}
.special-offer {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}
.special-body {
  padding: 20px;
}
.special-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.special-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.special-desc {
  font-size: 0.77rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.4;
}
.special-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}

/* ── REVIEWS ── */
#reviews {
  padding: 100px 48px;
  background: var(--dark);
  overflow: hidden;
}
.reviews-marquee {
  display: flex;
  gap: 20px;
  animation: marquee 30s linear infinite;
  width: max-content;
  margin-top: 48px;
}
.reviews-marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.review-card {
  min-width: 300px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  flex-shrink: 0;
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.review-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
}
.review-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}
.review-date {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.google-rating-big {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.google-stars-big {
  font-size: 1.4rem;
  color: var(--gold);
}
.rating-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── ABOUT ── */
#about {
  padding: 100px 48px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-text .section-label {
  text-align: left;
}
.about-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-stat {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.about-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
}
.about-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}
.about-visual {
  background: var(--dark);
  border-radius: var(--radius-lg);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(229, 57, 53, 0.2) 0%,
    transparent 70%
  );
}

/* ── OFFERS ── */
#offers {
  padding: 100px 48px;
  background: var(--dark);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.offer-card {
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.offer-card:hover {
  transform: scale(1.02);
}
.offer-card:nth-child(1) {
  background: linear-gradient(135deg, var(--red), #c62828);
}
.offer-card:nth-child(2) {
  background: linear-gradient(135deg, #ff9800, #e65100);
}
.offer-card:nth-child(3) {
  background: linear-gradient(135deg, #7b1fa2, #4a148c);
}
.offer-card:nth-child(4) {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
}
.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.offer-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.offer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 16px;
}
.offer-code {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}
.offer-bg-circle {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

/* ── FAQ ── */
#faq {
  padding: 100px 48px;
  background: var(--cream);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e8e5dc;
  padding: 20px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding-right: 8px;
  user-select: none;
}
.faq-q .arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
  color: var(--gray);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
}
.faq-a {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 72px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.footer-brand .nav-logo {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.social-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-hours {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.9;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── STICKY ORDER BTN ── */
.sticky-order {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 99px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(229, 57, 53, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(80px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s,
    box-shadow 0.2s;
}
.sticky-order.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-order:hover {
  box-shadow: 0 12px 40px rgba(229, 57, 53, 0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  #hero {
  }
  .hero-stats {
    gap: 24px;
  }
  #story,
  #menu,
  #why,
  #specials,
  #reviews,
  #about,
  #offers,
  #faq {
    padding: 70px 20px;
  }
  #specials {
    padding: 70px 0 70px 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-visual {
    height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
