:root {
  --accent: #ff2d3d;
  --accent-soft: #ff6b6b;
  --accent-glow: rgba(255, 45, 61, 0.45);
  --red: #ff2d3d;
  --red-dark: #e02535;
  --black: #050508;
  --white: #fafafa;
  --muted: rgba(250, 250, 250, 0.55);
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(14, 14, 18, 0.72);
  --card: rgba(18, 18, 24, 0.65);
  --nav-h: 3.75rem;
  --max: 76rem;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-sm: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --menu-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

.rolls-menu {
  font-family: "Onest", system-ui, sans-serif;
  position: relative;
  isolation: isolate;
  color: var(--white);
  line-height: 1.55;
  background-color: var(--black);
  background-image:
    var(--menu-noise),
    radial-gradient(ellipse 55% 45% at 88% 8%, rgba(255, 45, 61, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 92%, rgba(255, 120, 80, 0.08), transparent 50%),
    linear-gradient(180deg, #08080c 0%, #050508 50%, #0a0a10 100%);
  background-blend-mode: overlay, normal, normal, normal;
}

.rolls-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
}

.rolls-menu > * {
  position: relative;
  z-index: 1;
}

img { display: block; max-width: 100%; height: auto; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 300;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 16px var(--accent-glow);
  transition: width 0.08s linear;
}

/* Header & nav */
.header {
  position: sticky;
  top: 0.65rem;
  z-index: 100;
  padding: 0 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.35rem 0.5rem 0.35rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: var(--nav-h);
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 0.15rem 0;
  scroll-snap-type: x proximity;
}
.nav::-webkit-scrollbar { display: none; }

.nav__link {
  flex-shrink: 0;
  scroll-snap-align: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.nav__link.is-active {
  color: var(--white);
  background: rgba(255, 45, 61, 0.18);
  border-color: rgba(255, 45, 61, 0.35);
  box-shadow: 0 0 20px rgba(255, 45, 61, 0.15);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(320px, 62vh, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0.75rem 1rem 0;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s var(--ease-out);
}
.hero:hover .hero__bg {
  transform: scale(1.06);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 45, 61, 0.35) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.15) 0%, rgba(5, 5, 8, 0.92) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  width: 100%;
  color: var(--white);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero__tag::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.hero__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.6rem, 10vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-top: 0.85rem;
  background: linear-gradient(135deg, #fff 20%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Top order bar — compact CTA under the hero */
.rolls-cta-top {
  display: flex;
  justify-content: center;
  margin: 1.25rem 1rem 0.5rem;
}
.rolls-cta-top__btn {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  padding: 0.75rem 1.35rem;
  max-width: 100%;
  font-family: "Unbounded", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, #ff4757 100%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.rolls-cta-top__btn svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: none;
  fill: currentColor;
}
.rolls-cta-top__phone::before {
  content: "· ";
}
.rolls-cta-top__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--accent-glow);
}
.rolls-cta-top__btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .rolls-cta-top {
    margin-inline: 0.75rem;
  }
  .rolls-cta-top__btn {
    width: 100%;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.7rem 1rem;
    font-size: 0.68rem;
  }
  .rolls-cta-top__phone::before {
    content: none;
  }
}

/* Compact order button pinned to the bottom-right corner */
.rolls-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.1rem;
  font-family: "Unbounded", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, #ff4757 100%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(5, 5, 8, 0.35);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out),
    visibility 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

/* Kept out of the way over the hero; revealed by rolls-menu.js once scrolling starts */
.rolls-fab.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  pointer-events: none;
}
.rolls-fab:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(5, 5, 8, 0.35);
}
.rolls-fab:active {
  transform: translateY(1px);
}
.rolls-fab svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  fill: currentColor;
}

@media (max-width: 480px) {
  .rolls-fab {
    gap: 0.4rem;
    padding: 0.65rem 0.95rem;
    font-size: 0.62rem;
  }
}

/* Main */
.main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem 5rem;
}

.menu-section {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.menu-section__head {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius-sm);
  background: rgba(14, 14, 18, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.menu-section__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.25rem, 3.8vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Dish grid */
.dish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 540px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 900px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
}

.dish-card {
  background: var(--card);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.dish-card:hover {
  border-color: rgba(255, 45, 61, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 45, 61, 0.12);
}

.dish-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #141418;
}
.dish-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
}
.dish-card:hover .dish-card__media img {
  transform: scale(1.06);
}
.dish-card__media .dish-card__price {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.4rem 0.75rem;
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 45, 61, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.dish-card__body {
  padding: 1.05rem 1.15rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dish-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.dish-card__title {
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--white);
}

.dish-card__head .dish-card__price,
.dish-card__body > .dish-card__price {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-soft);
  white-space: nowrap;
}

.dish-card__desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  margin-top: auto;
}

.badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
  background: linear-gradient(135deg, var(--accent), #ff4757);
  color: var(--white);
  font-family: "Unbounded", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  border-radius: 999px;
  vertical-align: middle;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px var(--accent-glow);
}

/* Sets: no per-item photos, so they get an editorial "composition" card instead */
.dish-grid--sets {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .dish-grid--sets { grid-template-columns: repeat(2, 1fr); }
}

.dish-card--set {
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(125% 90% at 100% 0%, rgba(255, 45, 61, 0.16), transparent 58%),
    linear-gradient(165deg, rgba(26, 26, 34, 0.92) 0%, rgba(10, 10, 15, 0.94) 100%);
}

.dish-card--set::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 45, 61, 0.15) 45%, transparent 80%);
}

.dish-card--set:hover {
  border-color: rgba(255, 45, 61, 0.32);
}

.set-card__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  mask-image: radial-gradient(85% 120% at 100% 60%, #000 0%, transparent 70%);
}
.set-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-card--set .dish-card__body {
  padding: 1.4rem 1.45rem 1.5rem;
  gap: 0.6rem;
}

.set-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.set-card__eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.dish-card--set .dish-card__title {
  font-size: 1.05rem;
  line-height: 1.25;
}

.set-card__list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  padding: 0;
}
.set-card__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(250, 250, 250, 0.72);
}
.set-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.set-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.set-card__price b {
  font-family: "Unbounded", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.set-card__price span {
  font-family: "Unbounded", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-soft);
}
.set-card__price .set-card__weight {
  margin-left: auto;
  font-family: "Onest", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  background: transparent;
}

@media (min-width: 768px) {
  .header { top: 0.85rem; }
  .hero { margin: 1rem 1.5rem 0; }
  .main { padding-inline: 1.5rem; }
}

@media print {
  .header, .nav, .scroll-progress, .rolls-fab { display: none; }
  .dish-card, .menu-section { opacity: 1; transform: none; }
  .dish-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg, .dish-card, .menu-section, .rolls-fab {
    transition: none;
  }
  .rolls-fab.is-hidden { transform: none; }
  .hero:hover .hero__bg,
  .dish-card:hover .dish-card__media img {
    transform: none;
  }
}
/* Height of the site-wide sticky header; refined at runtime by rolls-menu.js. */
:root { --site-header: 5.25rem; }

body.rolls-menu-page {
  background-color: #050508;
  color: #fafafa;
}

/* style.css gives even sections a light bg and extra padding — reset on this page */
body.rolls-menu-page section,
.rolls-menu .menu-section {
  background: transparent;
  padding: 0;
  min-height: 0;
}

.rolls-menu .header {
  top: var(--site-header);
  padding-top: 0.5rem;
}

/* Backdrop that hides page content scrolling through the gap under the site header */
.rolls-menu .header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #050508 0%, rgba(5, 5, 8, 0.92) 62%, transparent 100%);
}

.menu-section {
  scroll-margin-top: calc(var(--site-header) + var(--nav-h) + 1.25rem);
}

.hero picture,
.dish-card__media picture,
.set-card__bg picture {
  display: contents;
}

.nav__link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: var(--max);
  margin: 1.25rem auto 0;
  padding: 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
}
.breadcrumbs li + li::before {
  content: "/";
  color: rgba(250, 250, 250, 0.3);
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease-out);
}
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs [aria-current="page"] { color: var(--white); }

@media (max-width: 767px) {
  :root { --site-header: 3.5rem; }
}

@media (min-width: 768px) {
  .breadcrumbs { padding-inline: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .header { backdrop-filter: none; background: rgba(14, 14, 18, 0.98); }
  .header__inner { backdrop-filter: none; }
}
