:root {
  --black: #080705;
  --graphite: #12110f;
  --graphite-2: #1b1712;
  --cream: #fff4dc;
  --muted: #b9aa91;
  --orange: #ff7a18;
  --amber: #ffc247;
  --red: #ff3f1f;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.07);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: min(1160px, calc(100% - 32px));
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--cream);
  font-family: "Manrope", "Bahnschrift", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 122, 24, 0.24), transparent 32rem),
    radial-gradient(circle at 10% 4%, rgba(255, 194, 71, 0.14), transparent 24rem),
    linear-gradient(135deg, #070604 0%, #11100e 48%, #060504 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.035) 3px 4px),
    radial-gradient(circle at 50% 20%, transparent, rgba(0, 0, 0, 0.64) 72%);
  mix-blend-mode: overlay;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: #130904;
  background: var(--amber);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--black);
  background: var(--amber);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-split {
  display: grid;
  gap: 20px;
  max-width: none;
}

.section-head p,
.about-copy > p,
.final-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.section-head a {
  color: var(--amber);
  border-bottom: 1px solid rgba(255, 194, 71, 0.45);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.7);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  font-size: clamp(4.8rem, 16vw, 12rem);
}

.hero-title {
  display: grid;
  max-width: 600px;
  gap: 12px;
  font-size: clamp(4.2rem, 9.2vw, 6.8rem);
}

.hero-title-brand {
  display: block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background:
    linear-gradient(180deg, #fff7df 0%, #ffd36b 42%, #ff7a18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 18px 42px rgba(255, 122, 24, 0.18));
}

.hero-title-note {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: min(100%, 620px);
  padding: 12px 18px 10px;
  color: var(--cream);
  font-family: "Manrope", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 2.15vw, 1.55rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: none;
  background:
    linear-gradient(135deg, rgba(255, 194, 71, 0.16), rgba(255, 122, 24, 0.08)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 194, 71, 0.24);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-title-note::before {
  width: 9px;
  height: 9px;
  align-self: center;
  margin-right: 10px;
  content: "";
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 194, 71, 0.8);
}

h2 {
  font-size: clamp(3.4rem, 10vw, 7.8rem);
}

h3 {
  font-size: clamp(2.1rem, 7vw, 3.3rem);
}

.glass {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(17, 14, 10, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(8, 7, 5, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  color: #1a0b02;
  font-weight: 900;
  letter-spacing: -0.06em;
  background:
    radial-gradient(circle at 35% 25%, #fff1ab, transparent 34%),
    linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 16px;
  box-shadow: 0 0 34px rgba(255, 122, 24, 0.44);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  top: 12px;
  right: 12px;
  left: 12px;
  z-index: 101;
  display: grid;
  gap: 8px;
  padding: 82px 18px 18px;
  visibility: hidden;
  background: rgba(13, 11, 8, 0.96);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-18px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(18px);
}

.nav-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-panel a {
  padding: 16px;
  color: var(--cream);
  font-weight: 800;
  border-radius: 16px;
}

.nav-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-order {
  color: #170904 !important;
  text-align: center;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 16px 38px rgba(255, 122, 24, 0.3);
}

.hero {
  min-height: 100svh;
  padding: 118px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 122, 24, 0.34), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(255, 194, 71, 0.18), transparent 20rem),
    linear-gradient(110deg, rgba(8, 7, 5, 0.6), rgba(8, 7, 5, 0.08));
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.5vw, 1.22rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  overflow: hidden;
  font-weight: 900;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34), transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #170904;
  background: linear-gradient(135deg, var(--amber), var(--orange) 58%, var(--red));
  box-shadow: 0 18px 44px rgba(255, 122, 24, 0.36);
}

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
}

.hero-stats dt {
  color: var(--amber);
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 0.9;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 12% -10% 6%;
  z-index: -2;
  content: "";
  background: radial-gradient(circle, rgba(255, 122, 24, 0.38), rgba(255, 122, 24, 0.04) 55%, transparent 68%);
  filter: blur(14px);
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-burger {
  position: relative;
  z-index: 2;
  width: min(92vw, 650px);
  margin-inline: auto;
  filter: drop-shadow(0 42px 56px rgba(0, 0, 0, 0.72));
  animation: burgerFloat 5s ease-in-out infinite;
}

.hero-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(28px, 7vw, 54px);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.035),
    0 34px 90px rgba(0, 0, 0, 0.62);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 194, 71, 0.25);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  inset: 10% 2% 8%;
}

.orbit-two {
  inset: 20% 14% 18%;
  border-color: rgba(255, 255, 255, 0.12);
}

.price-chip,
.flame-card {
  position: absolute;
  z-index: 3;
}

.price-chip {
  top: 14%;
  right: 8%;
  padding: 12px 16px;
  color: #180901;
  font-weight: 900;
  background: var(--amber);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(255, 194, 71, 0.24);
  transform: rotate(5deg);
}

.flame-card {
  bottom: 8%;
  left: 2%;
  display: grid;
  gap: 4px;
  min-width: 166px;
  padding: 16px;
  border-radius: 20px;
}

.flame-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flame-card strong {
  font-family: "Manrope", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: none;
}

.ticker {
  position: relative;
  width: 100%;
  margin-top: 54px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.1), rgba(255, 255, 255, 0.035));
}

.ticker div {
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: ticker 42s linear infinite;
  will-change: transform;
}

.ticker span {
  padding: 15px 22px;
  color: rgba(255, 244, 220, 0.78);
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker span::before {
  margin-right: 22px;
  color: var(--orange);
  content: "/";
}

.menu-section {
  padding-top: 92px;
}

.menu-grid {
  display: grid;
  gap: 18px;
}

.burger-card {
  position: relative;
  display: grid;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--graphite);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  transition: transform 0.45s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

.burger-card::after {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 60%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(255, 122, 24, 0.28), transparent 66%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.burger-card:hover {
  border-color: rgba(255, 194, 71, 0.32);
  box-shadow: 0 30px 90px rgba(255, 122, 24, 0.15), 0 24px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px) rotateX(2deg);
}

.burger-card:hover::after {
  opacity: 1;
}

.burger-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.35s ease;
}

.burger-card:hover img {
  filter: saturate(1.16) contrast(1.08);
  transform: scale(1.08);
}

.burger-card.featured {
  background:
    linear-gradient(160deg, rgba(255, 122, 24, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--graphite-2);
}

.card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-content: space-between;
  padding: 24px;
}

.card-content p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--amber);
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.card-bottom a {
  padding: 11px 14px;
  color: #190a02;
  font-weight: 900;
  background: var(--cream);
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.card-bottom a:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.menu-board {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  padding: clamp(18px, 4vw, 28px);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 122, 24, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.menu-board-copy {
  max-width: 680px;
}

.menu-board-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-board-grid {
  display: grid;
  gap: 14px;
}

.menu-shot {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f0d0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

.menu-shot::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.2), transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
}

.menu-shot:hover {
  border-color: rgba(255, 194, 71, 0.34);
  box-shadow: 0 24px 70px rgba(255, 122, 24, 0.12), 0 20px 54px rgba(0, 0, 0, 0.5);
  transform: translateY(-7px);
}

.menu-shot:hover::after {
  transform: translateX(120%);
}

.menu-shot img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.35s ease;
}

.menu-shot:hover img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.045);
}

.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 570px;
}

.about-media::before {
  position: absolute;
  inset: 10% 6% 18% -8%;
  content: "";
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.22), rgba(255, 194, 71, 0.04));
  border-radius: 44px;
  filter: blur(2px);
  transform: rotate(-5deg);
}

.about-main,
.about-floating {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.about-main {
  inset: 0 auto auto 0;
  width: min(86%, 560px);
  border-radius: 40px;
}

.about-floating {
  right: 0;
  bottom: 0;
  width: min(58%, 340px);
  border-radius: 28px;
}

.quality-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.quality-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.quality-list li:hover {
  border-color: rgba(255, 194, 71, 0.28);
  transform: translateX(6px);
}

.quality-list span {
  grid-row: span 2;
  color: var(--orange);
  font-weight: 900;
}

.quality-list strong {
  font-size: 1.05rem;
}

.quality-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-grid {
  display: grid;
  gap: 18px;
}

.social-carousel-layout {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.social-stats div {
  display: grid;
  gap: 6px;
  min-height: 120px;
  align-content: center;
  padding: 18px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.social-stats strong {
  color: var(--amber);
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 0.9;
}

.social-stats span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reel-card {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reel-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.reel-card:hover img {
  transform: scale(1.05);
}

.reel-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(8, 7, 5, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.play-btn {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.42);
  animation: playPulse 2.2s infinite;
}

.play-btn span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #170904;
}

.reel-card strong {
  display: block;
  font-weight: 900;
}

.reel-card small {
  color: var(--muted);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.masonry-gallery img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s var(--ease), filter 0.35s ease;
}

.masonry-gallery img:hover {
  filter: saturate(1.2) contrast(1.08);
  transform: translateY(-7px) scale(1.02);
}

.masonry-gallery .tall {
  grid-row: span 2;
}

.masonry-gallery .wide {
  grid-column: span 2;
}

.carousel {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.58s var(--ease);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.gallery-carousel {
  min-width: 0;
}

.gallery-slide {
  position: relative;
  height: clamp(390px, 62vw, 680px);
  margin: 0;
  overflow: hidden;
  background: #11100e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.35s ease;
}

.gallery-slide:hover img {
  filter: saturate(1.1) contrast(1.06);
  transform: scale(1.04);
}

.gallery-slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  color: var(--cream);
  font-weight: 900;
  background: rgba(8, 7, 5, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}

.carousel-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.carousel-btn {
  min-height: 42px;
  padding: 0 16px;
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(255, 122, 24, 0.16);
  border-color: rgba(255, 194, 71, 0.34);
  transform: translateY(-2px);
}

.carousel-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 244, 220, 0.34);
  border: 0;
  border-radius: 50%;
  transition: width 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.carousel-dot[aria-current="true"] {
  width: 28px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(255, 122, 24, 0.34);
}

.review-carousel {
  margin-top: 18px;
}

.review-carousel .carousel-viewport {
  border-radius: var(--radius-md);
}

.review-carousel .carousel-track {
  align-items: stretch;
}

.review-carousel .review-card {
  display: grid;
  min-height: 360px;
  align-content: space-between;
  border-radius: var(--radius-md);
}

.reviews,
.review-showcase {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.review-card {
  position: relative;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius-md);
}

.review-card::before {
  position: absolute;
  top: -54px;
  right: -54px;
  width: 150px;
  height: 150px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(255, 122, 24, 0.22), transparent 66%);
}

.review-card p {
  margin: 0 0 16px;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.65;
}

.review-card cite {
  color: var(--amber);
  font-style: normal;
  font-weight: 900;
}

.reviews-section {
  padding-top: 86px;
}

.review-showcase {
  grid-template-columns: 1fr;
}

.review-card-large {
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 122, 24, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.review-card-large p {
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
}

.review-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(255, 194, 71, 0.28);
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.review-card footer a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  color: #170904;
  font-size: 0.86rem;
  font-weight: 900;
  background: var(--cream);
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.review-card footer a:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.contact-section {
  padding-bottom: 54px;
}

.final-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 5vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 122, 24, 0.28), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(28px, 6vw, 52px);
  box-shadow: var(--shadow);
}

.final-copy {
  max-width: 720px;
}

.contact-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  font-style: normal;
  border-radius: var(--radius-md);
}

.contact-panel div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel strong,
.contact-panel a {
  color: var(--cream);
  font-weight: 900;
}

.instagram-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 10px 10px;
  background:
    linear-gradient(#15110d, #15110d) padding-box,
    linear-gradient(135deg, #ffd36b, #ff7a18 40%, #e1306c 72%, #833ab4) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(225, 48, 108, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.instagram-link:hover {
  box-shadow: 0 18px 42px rgba(225, 48, 108, 0.2), 0 0 34px rgba(255, 122, 24, 0.12);
  transform: translateY(-2px);
}

.instagram-link svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 5px;
  fill: #170904;
  background: linear-gradient(135deg, #ffd36b, #ff7a18 42%, #e1306c 72%, #833ab4);
  border-radius: 50%;
}

.instagram-link strong {
  color: var(--cream);
  font-size: 0.92rem;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: end;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 194, 71, 0.2), transparent 8rem),
    linear-gradient(135deg, rgba(255, 122, 24, 0.18), rgba(255, 255, 255, 0.035)),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.08) 49% 51%, transparent 52%),
    #12100d;
  background-size: auto, auto, 48px 48px, auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.map-card:hover {
  border-color: rgba(255, 194, 71, 0.34);
  transform: translateY(-6px);
}

.map-card strong {
  font-size: 1.2rem;
}

.map-card small {
  margin-top: 4px;
  color: var(--muted);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 10px rgba(255, 122, 24, 0.12), 0 0 42px rgba(255, 122, 24, 0.45);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  background: #190a02;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.footer {
  padding: 30px 0 44px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  margin: 0;
}

.footer a:last-child {
  color: var(--amber);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@keyframes burgerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.42);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 122, 24, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 24, 0);
  }
}

@media (min-width: 720px) {
  :root {
    --shell: min(1160px, calc(100% - 48px));
  }

  .section {
    padding: 112px 0;
  }

  .hero {
    padding-top: 142px;
  }

  .menu-grid,
  .reviews,
  .review-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card-large {
    grid-column: span 2;
  }

  .burger-card.featured {
    grid-column: span 2;
  }

  .burger-card.featured img {
    height: 380px;
  }

  .proof-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .social-stats {
    grid-column: span 2;
  }

  .social-carousel-layout .social-stats {
    grid-column: auto;
  }

  .masonry-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .masonry-gallery .wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.2fr auto;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    visibility: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    backdrop-filter: none;
  }

  .nav-panel a {
    padding: 12px 14px;
    color: rgba(255, 244, 220, 0.78);
    font-size: 0.9rem;
  }

  .nav-panel a:not(.nav-order):hover {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-order {
    padding-inline: 18px !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
    gap: clamp(44px, 6vw, 86px);
  }

  .hero-copy {
    margin-top: -24px;
  }

  .hero-visual {
    min-height: 690px;
  }

  .hero-burger {
    width: min(43vw, 590px);
    max-width: none;
    margin-left: 0;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .burger-card.featured {
    grid-column: auto;
    transform: translateY(-28px);
  }

  .burger-card.featured:hover {
    transform: translateY(-38px) rotateX(2deg);
  }

  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
  }

  .section-head-split {
    grid-template-columns: 1fr 0.9fr;
    align-items: end;
  }

  .proof-grid {
    grid-template-columns: 0.8fr 0.9fr 1.1fr;
  }

  .social-carousel-layout {
    grid-template-columns: 0.34fr minmax(0, 1fr);
  }

  .social-stats {
    grid-column: auto;
  }

  .social-stats {
    grid-template-columns: 1fr;
  }

  .reel-card {
    min-height: 640px;
  }

  .gallery-slide {
    height: 640px;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-board {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
  }

  .review-showcase {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .review-card-large {
    grid-row: span 2;
    grid-column: auto;
  }

  .final-card {
    grid-template-columns: 1.1fr 0.64fr;
    align-items: stretch;
  }

  .map-card {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .gallery-slide {
    height: 430px;
  }

  .carousel-controls {
    justify-content: space-between;
  }

  .carousel-dots {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3.7rem, 18vw, 5.2rem);
  }

  .hero-title-note {
    border-radius: 22px;
  }

  .hero-stats,
  .social-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .social-stats div {
    text-align: left;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about-media {
    min-height: 460px;
  }

  .about-floating {
    width: 68%;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .masonry-gallery .wide,
  .masonry-gallery .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .menu-shot img {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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