:root {
  --red: #ed292d;
  --red-dark: #c61d21;
  --ink: #101113;
  --ink-2: #17181b;
  --paper: #f6f2eb;
  --paper-2: #fffdfa;
  --muted: #706b65;
  --line: rgba(0, 0, 0, 0.1);
  --white: #fff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-main {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.brand-mark {
  color: var(--red);
}
.brand-sub {
  margin-top: 8px;
  color: #bbb;
  font-size: 8px;
  letter-spacing: 0.34em;
  font-weight: 700;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #eee;
  font-size: 13px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.25s;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.order-btn {
  background: var(--red);
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding-top: 78px;
  color: #fff;
  background: radial-gradient(circle at 75% 25%, rgba(237, 41, 45, 0.14), transparent 22%),
    linear-gradient(115deg, #090909 0%, #121316 52%, #21100f 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 38%, rgba(255, 125, 36, 0.14), transparent 20%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 18%);
}
.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 60px;
  min-height: calc(760px - 78px);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #f0d8cc;
}
.eyebrow.dark {
  color: var(--red);
}
.hero h1,
.section-head h2,
.story-copy h2,
.cta-box h2,
.featured-menu-content h3 {
  font-family: "Playfair Display", serif;
}
.hero h1 {
  font-size: clamp(56px, 7vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.04em;
}
.hero h1 span,
.section-head h2 span,
.story-copy h2 span {
  color: var(--red);
}
.hero-copy > p {
  margin-top: 24px;
  max-width: 560px;
  color: #d7d7d7;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(237, 41, 45, 0.18);
}
.btn-primary:hover {
  background: #ff3438;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.23);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.benefits {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.benefits div {
  position: relative;
  padding-left: 16px;
}
.benefits div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 6px;
  background: var(--red);
}
.benefits strong,
.benefits small {
  display: block;
}
.benefits strong {
  font-size: 13px;
}
.benefits small {
  margin-top: 4px;
  color: #aaa;
  font-size: 11px;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.hero-menu-box {
  position: relative;
  width: min(580px, 100%);
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(145deg, #181818, #0f0f10);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.36);
}
.hero-menu-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.25));
}
.price-badge {
  position: absolute;
  right: 6px;
  bottom: 42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(7deg);
}
.price-badge span {
  font-size: 11px;
}
.price-badge strong {
  font-size: 26px;
}

/* Common sections */
.light-bg {
  background: var(--paper);
}
.dark-bg {
  color: #fff;
  background: radial-gradient(circle at 10% 10%, rgba(237, 41, 45, 0.1), transparent 22%), #0d0e10;
}
.menu-section,
.featured-board {
  padding: 90px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-head h2,
.story-copy h2,
.cta-box h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}
.section-head > p {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.7;
}
.section-head.light > p {
  color: #b5b5b5;
}
.section-head.light h2 {
  color: #fff;
}

/* Featured combo */
.featured-menu {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(24, 16, 8, 0.08);
}
.featured-menu-image {
  min-height: 380px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(237, 41, 45, 0.08), transparent 38%), linear-gradient(135deg, #f9efe1, #f1e5d3);
  padding: 36px;
}
.featured-menu-image img {
  max-height: 320px;
  object-fit: contain;
}
.featured-menu-content {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.featured-menu-content h3 {
  font-size: 44px;
  line-height: 1;
}
.featured-menu-content p {
  margin: 18px 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

/* Card grids */
.food-grid {
  display: grid;
  gap: 20px;
}
.four-col {
  grid-template-columns: repeat(4, 1fr);
}
.food-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.dark-bg .food-card {
  box-shadow: none;
}
.food-card:hover {
  transform: translateY(-6px);
}
.food-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(237, 41, 45, 0.08), transparent 40%), linear-gradient(145deg, #121212, #1c1c1f);
  padding: 14px;
}
.light-bg .food-card-image {
  background: radial-gradient(circle at 50% 50%, rgba(237, 41, 45, 0.08), transparent 40%), linear-gradient(145deg, #181818, #101011);
}
.food-card-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 14px;
}
.food-card-body {
  padding: 18px 18px 20px;
}
.menu-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff2f2;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.food-card h3 {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
}
.food-card p {
  margin-top: 10px;
  min-height: 58px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.menu-prices {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.menu-prices span {
  min-width: 112px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #faf6f1;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.menu-prices small {
  display: block;
  color: #7b736e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.menu-prices strong {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 18px;
}
.single-price span {
  min-width: 140px;
}

/* Story section */
.story-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #f6f1e9 0%, #f6f1e9 58%, #111214 58%, #111214 100%);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.story-copy > p {
  max-width: 600px;
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.8;
}
.story-stats {
  display: flex;
  gap: 15px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.story-stats div {
  min-width: 140px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}
.story-stats strong,
.story-stats span {
  display: block;
}
.story-stats strong {
  font-size: 18px;
}
.story-stats span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.chef-card {
  background: #151516;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.chef-photo-wrap {
  height: 470px;
  overflow: hidden;
  background: #222;
}
.chef-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.chef-caption {
  padding: 26px 30px 30px;
}
.chef-caption span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.chef-caption h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin: 8px 0;
}
.chef-caption p {
  color: #aaa;
  line-height: 1.6;
  font-size: 13px;
}

/* CTA + footer */
.cta-section {
  padding: 70px 0;
  background: #121213;
}
.cta-box {
  min-height: 210px;
  border-radius: 30px;
  padding: 42px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: radial-gradient(circle at 85% 30%, rgba(237, 41, 45, 0.22), transparent 28%), linear-gradient(135deg, #1b1b1d, #0c0c0d);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-box p {
  color: #aaa;
  margin-top: 12px;
}
footer {
  background: #080809;
  color: #fff;
  padding: 62px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  margin-bottom: 18px;
}
.footer-grid h4 {
  font-size: 12px;
  color: #ddd;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-grid p,
.footer-grid a {
  color: #aaa;
  font-size: 13px;
  line-height: 1.8;
}
.muted {
  color: #666;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 11px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1100px) {
  .main-nav,
  .order-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: 78px;
    left: 0;
    right: 0;
    padding: 24px 20px 30px;
    gap: 22px;
    background: #0b0b0c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-grid,
  .featured-menu,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 90px 0 60px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-section {
    background: #f6f1e9;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1200px);
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .benefits {
    gap: 18px;
  }
  .hero-menu-box {
    padding: 20px;
  }
  .price-badge {
    width: 96px;
    height: 96px;
    bottom: 20px;
  }
  .price-badge strong {
    font-size: 20px;
  }
  .section-head,
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-section,
  .featured-board,
  .story-section {
    padding: 70px 0;
  }
  .featured-menu-image {
    min-height: 260px;
  }
  .featured-menu-content {
    padding: 28px;
  }
  .featured-menu-content h3 {
    font-size: 34px;
  }
  .four-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .food-card p {
    min-height: auto;
  }
  .chef-photo-wrap {
    height: 360px;
  }
  .cta-box {
    padding: 34px 26px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}
/* =========================
   Uber Eats Floating Widget
========================= */
.uber-eats-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
  animation: uberFloatIn 0.8s ease, uberSoftPulse 2.8s ease-in-out infinite 1.2s;
}

.uber-eats-floating:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.uber-eats-floating__logo {
  flex: 0 0 auto;
  min-width: 76px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.uber-black {
  color: #000;
}

.uber-green {
  color: #06c167;
  margin-left: 2px;
}

.uber-eats-floating__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.uber-eats-floating__top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.uber-eats-floating__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.uber-eats-floating__count {
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.uber-eats-floating__bottom {
  font-size: 13px;
  font-weight: 700;
  color: #06c167;
}

@keyframes uberFloatIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes uberSoftPulse {
  0%,
  100% {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow: 0 20px 55px rgba(6, 193, 103, 0.24);
  }
}

@media (max-width: 768px) {
  .uber-eats-floating {
    right: 14px;
    bottom: 14px;
    min-width: auto;
    max-width: none;
    width: auto;
    border-radius: 18px;
    padding: 12px 14px;
  }

  .uber-eats-floating__logo {
    font-size: 18px;
    min-width: 68px;
  }

  .uber-eats-floating__rating {
    min-height: 30px;
    font-size: 13px;
  }

  .uber-eats-floating__count,
  .uber-eats-floating__bottom {
    font-size: 12px;
  }
}
.uber-eats-inline {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: 0.25s ease;
}

.uber-eats-inline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.uber-eats-inline__logo {
  font-weight: 800;
  font-size: 15px;
}

.uber-eats-inline__divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.uber-eats-inline__rating {
  font-weight: 800;
}

.uber-eats-inline__count {
  color: #d7d7d7;
  font-size: 14px;
}
