/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --white: #ffffff;
  --gray: #888888;
  --gray-dark: #1a1a1a;
  --red: #e8192c;
  --red-hover: #ff1a30;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}

.header__logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.header__nav {
  display: none;
  gap: 32px;
}

.header__nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.header__nav a:hover { opacity: 1; }

.header__cta {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--red-hover);
  transform: scale(1.03);
}

@media (min-width: 640px) {
  .header { padding: 20px 40px; }
  .header__logo img { width: 52px; height: 52px; }
  .header__nav { display: flex; }
  .header__cta { padding: 12px 28px; font-size: 12px; }
}

/* ── Scroll Hero ── */
.scroll-hero {
  position: relative;
  height: 380vh;
}

.scroll-hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 68px 12px 16px;
  background: var(--black);
}

.scroll-hero__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(80px, 22vw, 220px);
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.scroll-hero__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
}

.scroll-hero__video-wrap {
  position: relative;
  z-index: 2;
  width: min(98vw, 1280px, calc(58vh * 16 / 9));
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  transform: translateZ(0);
}

.scroll-hero__canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  image-rendering: auto;
  will-change: contents;
}

.scroll-hero__canvas.is-ready {
  opacity: 1;
}

.scroll-hero__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  transition: opacity 0.3s ease;
}

.scroll-hero__loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hero__loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.scroll-hero__loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--load, 0%);
  background: var(--red);
  transition: width 0.15s ease;
}

.scroll-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 28px;
  text-align: center;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    transparent 72%
  );
  transition: opacity 0.4s;
}

.scroll-hero__overlay.is-hidden {
  opacity: 0;
}

.scroll-hero__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.scroll-hero__title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 0.82;
  letter-spacing: 0.1em;
}

.scroll-hero__title span {
  display: block;
  font-size: clamp(56px, 15vw, 100px);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.scroll-hero__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.scroll-hero__hint-icon {
  display: inline-block;
  animation: bounce 1.8s ease-in-out infinite;
}

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

.scroll-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 4;
}

.scroll-hero__progress-bar {
  height: 100%;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@media (min-width: 768px) {
  .scroll-hero__sticky {
    padding: 80px 32px 20px;
  }

  .scroll-hero__video-wrap {
    width: min(94vw, 1280px, calc(64vh * 16 / 9));
  }

  .scroll-hero__overlay {
    padding: 0 32px 36px;
  }

  .scroll-hero__tag {
    font-size: 12px;
    letter-spacing: 0.32em;
    margin-bottom: 8px;
  }

  .scroll-hero__title span {
    font-size: clamp(76px, 10vw, 120px);
    letter-spacing: 0.12em;
  }
}

@media (min-width: 1200px) {
  .scroll-hero__video-wrap {
    width: min(90vw, 1280px, calc(68vh * 16 / 9));
  }

  .scroll-hero__title span {
    font-size: clamp(88px, 9vw, 130px);
  }
}

/* ── Intro ── */
.intro {
  padding: 80px 24px 88px;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.intro__inner {
  max-width: 600px;
  margin: 0 auto;
}

.intro__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.intro__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.intro__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
}

/* ── Promo (subtle campaigns) ── */
.promo {
  max-width: 600px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.promo__viewport {
  overflow: hidden;
  width: 100%;
}

.promo__track {
  display: flex;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.promo__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding-right: 8px;
}

.promo__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.promo__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 56px);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.promo__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  max-width: 420px;
}

.promo__foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.promo__progress {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-width: 0;
}

.promo__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(232, 25, 44, 0.7);
  transform-origin: left center;
}

.promo__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.promo__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.promo__btn:hover {
  border-color: var(--red-hover);
  color: var(--white);
  background: var(--red);
}

.promo__btn:active {
  transform: scale(0.94);
}

.promo__count {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .promo {
    margin-top: 72px;
    padding-top: 56px;
  }
}

/* ── Menu ── */
.menu {
  padding: 80px 24px 100px;
  max-width: 720px;
  margin: 0 auto;
}

.menu__header {
  margin-bottom: 48px;
}

.menu__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.menu__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 56px);
  letter-spacing: 0.04em;
}

.menu__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-card {
  display: flex;
  gap: 16px;
  background: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.menu-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-card:hover {
  border-color: rgba(232, 25, 44, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 25, 44, 0.1);
  transform: translateY(-3px);
}

.menu-card.is-visible:hover {
  transform: translateY(-3px);
}

.menu-card__image {
  flex-shrink: 0;
  width: 118px;
  align-self: stretch;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 118px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card__photo {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover .menu-card__photo {
  transform: scale(1.12);
}

.menu-card__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.menu-card:hover .menu-card__shine {
  animation: menu-shine 0.85s ease;
}

@keyframes menu-shine {
  to { transform: translateX(120%); }
}

.menu-card__body {
  flex: 1;
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.menu-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.menu-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.menu-card__price {
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}

.menu-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
  font-weight: 300;
}

.menu-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.tag--hot { background: rgba(232,25,44,0.15); color: var(--red); }
.tag--premium { background: rgba(255,215,0,0.1); color: #ffd700; }
.tag--vegan { background: rgba(76,175,80,0.15); color: #81c784; }

.menu__more {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .menu-card__image { width: 140px; }
  .menu-card__visual { min-height: 140px; }
  .menu-card__body { padding: 20px 20px 20px 0; }
}

/* ── Footer ── */
.footer {
  padding: 60px 24px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
}

.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
