:root {
  --black: #0b0608;
  --deep: #14070d;
  --red: #e2122c;
  --red-dark: #8b0c1f;
  --yellow: #f6c544;
  --cream: #fff6e8;
  --white: #ffffff;
  --purple: #4a1d6b;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 60px rgba(11, 6, 8, 0.45);
  --border: 1px solid rgba(255, 255, 255, 0.16);
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 10%, rgba(246, 197, 68, 0.35), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(226, 18, 44, 0.35), transparent 50%),
    linear-gradient(135deg, #0b0608 0%, #14070d 45%, #0b0608 100%);
  background-size: 160% 160%;
  animation: gradientShift 18s ease infinite;
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(226, 18, 44, 0.25);
}

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

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

.page {
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: -20% 0 0;
  background: radial-gradient(circle at 30% 20%, rgba(226, 18, 44, 0.35), transparent 65%),
    radial-gradient(circle at 80% 0%, rgba(246, 197, 68, 0.35), transparent 60%),
    radial-gradient(circle at 60% 70%, rgba(74, 29, 107, 0.35), transparent 70%);
  opacity: 0.7;
  filter: blur(10px);
  animation: glowShift 20s ease-in-out infinite;
  z-index: 0;
}

.page > * {
  position: relative;
  z-index: 1;
}

.particles {
  position: absolute;
  inset: -30% 0;
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(246, 197, 68, 0.4) 1.5px, transparent 1.5px),
    radial-gradient(rgba(226, 18, 44, 0.34) 1.3px, transparent 1.3px);
  background-size: 98px 98px, 64px 64px;
  animation: particleDrift 18s linear infinite;
}

.particles::after {
  background-image: radial-gradient(rgba(255, 246, 232, 0.34) 1.3px, transparent 1.3px),
    radial-gradient(rgba(74, 29, 107, 0.36) 1.6px, transparent 1.6px);
  background-size: 124px 124px, 84px 84px;
  animation: particleDrift 26s linear reverse infinite;
  mix-blend-mode: screen;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(11, 6, 8, 0.8);
  border-bottom: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 16px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transition: width 0.3s ease;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  padding: 120px 6vw 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(135deg, rgba(226, 18, 44, 0.2), rgba(246, 197, 68, 0.2));
  border: var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 246, 232, 0.82);
}

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

.hero-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 6, 8, 0.75);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: var(--border);
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--red), var(--yellow));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(226, 18, 44, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: var(--border);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(226, 18, 44, 0.25);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, var(--red), var(--yellow));
  color: var(--white);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
}

.intro-card {
  animation: introCard 0.9s ease both;
}

.intro-card .intro-item {
  opacity: 0;
  transform: translateY(18px);
  animation: introFade 0.8s ease forwards;
}

.intro-delay-2 {
  animation-delay: 0.2s;
}

.intro-delay-3 {
  animation-delay: 0.35s;
}

.intro-delay-4 {
  animation-delay: 0.5s;
}

.intro-delay-5 {
  animation-delay: 0.65s;
}

.intro-delay-6 {
  animation-delay: 0.8s;
}

.intro-side {
  animation: introFade 0.8s ease 0.5s both;
}

.delay-long {
  animation-delay: 0.7s;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.7);
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
  animation: scrollPulse 1.6s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, rgba(246, 197, 68, 0.8), transparent);
}

.scroll-text {
  font-weight: 600;
}

.hero-plate {
  background: linear-gradient(135deg, rgba(246, 197, 68, 0.18), rgba(226, 18, 44, 0.18));
  border: var(--border);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: var(--border);
}

.section {
  padding: 80px 6vw;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.section-subtitle {
  max-width: 640px;
  color: rgba(255, 246, 232, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.showcase-tile,
.gallery-tile,
.faq-item,
.sauce-card {
  background: var(--glass);
  border: var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.card:hover,
.showcase-tile:hover,
.gallery-tile:hover,
.faq-item:hover,
.sauce-card:hover {
  box-shadow: 0 30px 80px rgba(226, 18, 44, 0.25);
  border-color: rgba(246, 197, 68, 0.4);
}

.tilt-card {
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.01);
}

.glow-card {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .glow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      180px circle at var(--cursor-x, 50%) var(--cursor-y, 50%),
      rgba(246, 197, 68, 0.25),
      rgba(226, 18, 44, 0.12),
      transparent 65%
    );
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    mix-blend-mode: screen;
  }

  .glow-card:hover::before {
    opacity: 1;
  }
}

.card-media,
.tile-media,
.faq-media,
.sauce-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card-media::after,
.tile-media::after,
.faq-media::after,
.sauce-media::after,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 18, 44, 0.35), rgba(246, 197, 68, 0.2));
  mix-blend-mode: multiply;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover .card-media::after,
.showcase-tile:hover .tile-media::after,
.gallery-tile:hover .tile-media::after,
.faq-item:hover .faq-media::after,
.sauce-card:hover .sauce-media::after,
.hero-card:hover .hero-media::after {
  opacity: 0.8;
}

.card-media img,
.tile-media img,
.faq-media img,
.sauce-media img,
.hero-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(1.1) contrast(1.05);
}

.hero-media img {
  height: 220px;
}

.card:hover img,
.showcase-tile:hover img,
.gallery-tile:hover img,
.faq-item:hover img,
.sauce-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.3) contrast(1.1);
}

.parallax {
  transform: translateY(calc(var(--parallax, 0px) * -1));
  transition: transform 0.3s ease;
  will-change: transform;
}

.card-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 197, 68, 0.6), transparent 70%);
  top: -50px;
  right: -40px;
  filter: blur(12px);
}

.menu-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
}

.ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ribbon {
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: var(--border);
}

.marquee {
  display: flex;
  gap: 30px;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  animation: scroll 16s linear infinite;
}

.marquee-item {
  padding: 12px 20px;
  border-radius: 999px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}

.showcase {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.showcase-tile {
  background: linear-gradient(120deg, rgba(226, 18, 44, 0.18), rgba(246, 197, 68, 0.18));
}

.sauce-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.sauce-carousel::-webkit-scrollbar {
  height: 6px;
}

.sauce-carousel::-webkit-scrollbar-thumb {
  background: rgba(246, 197, 68, 0.6);
  border-radius: 999px;
}

.sauce-card {
  scroll-snap-align: start;
  background: linear-gradient(140deg, rgba(226, 18, 44, 0.18), rgba(246, 197, 68, 0.2));
  border: var(--border);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sauce-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(246, 197, 68, 0.5), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(226, 18, 44, 0.5), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.sauce-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sauce-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
}

.sauce-badge {
  align-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(11, 6, 8, 0.7);
  border: var(--border);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  display: grid;
  place-items: center;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.gallery-tile {
  padding: 16px;
  min-height: 200px;
  justify-content: flex-end;
  text-align: left;
  font-weight: 600;
  color: var(--white);
}

.gallery-tile span {
  z-index: 2;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
}

.footer {
  padding: 60px 6vw;
  border-top: var(--border);
  background: rgba(11, 6, 8, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-note {
  color: rgba(255, 246, 232, 0.6);
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.float {
  animation: float 6s ease-in-out infinite;
}

.card .section-subtitle,
.showcase-tile .section-subtitle,
.gallery-tile .section-subtitle,
.faq-item .section-subtitle,
.hero-plate .section-subtitle {
  margin-bottom: 0;
}

@media (min-width: 901px) {
  .filter-bar {
    position: sticky;
    top: 88px;
    z-index: 3;
    background: rgba(11, 6, 8, 0.7);
    backdrop-filter: blur(12px);
    padding: 10px 14px;
    border-radius: 999px;
    border: var(--border);
    width: fit-content;
  }
}

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

@keyframes introFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introCard {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

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

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes glowShift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

@keyframes particleDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-120px, 160px, 0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    flex-direction: column;
    width: min(80vw, 320px);
    height: calc(100vh - 72px);
    padding: 24px;
    background: rgba(11, 6, 8, 0.95);
    border-left: var(--border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 5;
  }

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

  .nav-toggle {
    display: grid;
  }

  .hero {
    padding-top: 90px;
  }
}

@media (max-width: 600px) {
  .hero-card {
    padding: 28px;
  }

  .section {
    padding: 60px 6vw;
  }

  .card-media img,
  .tile-media img,
  .faq-media img,
  .hero-media img {
    height: 160px;
  }

  .sauce-carousel {
    grid-auto-columns: minmax(200px, 80%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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