:root {
  --background: 0 0% 7%;
  --foreground: 40 30% 96%;
  --brand-flame: 42 100% 55%;
  --brand-ember: 18 90% 52%;
  --brand-charcoal: 0 0% 11%;
  --gradient-flame: linear-gradient(135deg, hsl(42 100% 55%), hsl(18 90% 52%));
  --shadow-glow: 0 10px 60px -10px hsl(42 100% 55% / 0.6);
  --shadow-ember: 0 0 80px hsl(18 90% 52% / 0.35);
  --container: 1400px;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid hsl(var(--brand-flame));
  outline-offset: 4px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 2rem;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.text-gradient-flame {
  background: var(--gradient-flame);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.button:hover {
  transform: scale(1.05);
}

.button-flame {
  background: var(--gradient-flame);
  color: #000;
}

.button-outline {
  border-color: hsl(0 0% 100% / 0.2);
  color: hsl(var(--foreground));
}

.button-outline:hover {
  background: hsl(0 0% 100% / 0.05);
  border-color: hsl(var(--brand-flame));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid hsl(0 0% 100% / 0.05);
  background: hsl(var(--background) / 0.7);
  backdrop-filter: blur(12px);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: hsl(var(--background) / 0.9);
  box-shadow: 0 14px 35px hsl(0 0% 0% / 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #000;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  box-shadow: 0 0 0 2px hsl(var(--brand-flame) / 0.6);
}

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

.brand-name,
.footer-brand span:last-child {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.main-nav a {
  transition: color var(--transition);
}

.main-nav a:hover {
  color: hsl(var(--brand-flame));
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-call {
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid hsl(0 0% 100% / 0.15);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.05);
  color: hsl(var(--foreground));
  cursor: pointer;
}

.menu-toggle .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.menu-toggle .icon-close {
  display: none;
}

body.is-menu-open .menu-toggle .icon-menu {
  display: none;
}

body.is-menu-open .menu-toggle .icon-close {
  display: block;
}

.call-mobile {
  display: none;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-bg span,
.sparks {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-gradient {
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.85), hsl(var(--background) / 0.6));
}

.radial-flame,
.menu-radial {
  background: radial-gradient(circle at 50% 30%, hsl(42 100% 55% / 0.18), transparent 60%);
}

.sparks {
  pointer-events: none;
  overflow: hidden;
}

.sparks span {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: hsl(var(--brand-flame) / 0.6);
  animation: float var(--duration) ease-in-out var(--delay) infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-copy {
  order: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid hsl(var(--brand-flame) / 0.4);
  border-radius: 999px;
  color: hsl(var(--brand-flame));
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.menu-content > .section-heading h2,
.contact-card h3,
.menu-group-title,
.footer-brand span:last-child {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: 3.75rem;
}

.hero-note {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  color: hsl(var(--foreground) / 0.7);
  font-family: "Caveat", cursive;
  font-size: 1.125rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-cta {
  box-shadow: var(--shadow-glow);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: hsl(var(--foreground) / 0.6);
  font-size: 0.875rem;
}

.stars {
  display: inline-flex;
  gap: 0.125rem;
  color: hsl(var(--brand-flame));
}

.stars .icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero-logo-wrap {
  position: relative;
  order: 1;
  justify-self: center;
}

.hero-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 30%, hsl(42 100% 55% / 0.18), transparent 60%);
  filter: blur(40px);
  transform: scale(1.1);
}

.hero-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 16rem;
  height: 16rem;
  overflow: hidden;
  border-radius: 999px;
  background: #000;
  box-shadow: var(--shadow-glow), 0 0 0 4px hsl(var(--brand-flame) / 0.5);
  animation: float 6s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1;
  transform: translateX(-50%);
  color: hsl(var(--foreground) / 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: color var(--transition);
}

.scroll-cue::before {
  content: "↓ ";
}

.scroll-cue:hover {
  color: hsl(var(--brand-flame));
}

.about-section,
.reviews-section,
.contact-section {
  padding-block: 6rem;
}

.about-section {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.about-image {
  position: relative;
}

.about-image span {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, hsl(var(--brand-flame) / 0.2), hsl(var(--brand-ember) / 0.2));
  filter: blur(40px);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.about-image:hover span {
  opacity: 1;
}

.about-image img {
  position: relative;
  width: 100%;
  height: 31.25rem;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.section-kicker {
  margin: 0;
  color: hsl(var(--brand-flame));
  font-size: 0.875rem;
  text-transform: uppercase;
}

.section-kicker.centered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-copy h2,
.section-heading h2 {
  margin-top: 0.75rem;
  font-size: 3.5rem;
}

.section-copy p:not(.section-kicker) {
  margin: 1.5rem 0 0;
  color: hsl(var(--foreground) / 0.7);
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: hsl(var(--foreground) / 0.8);
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
}

.feature-list .icon {
  color: hsl(var(--brand-flame));
  transform: translateY(0.1rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 6rem;
}

.gallery-grid figure {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.1);
}

.menu-section {
  position: relative;
  overflow: hidden;
  padding-block: 6rem;
  background: hsl(var(--brand-charcoal));
}

.menu-radial {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.menu-content {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 3.5rem;
  text-align: center;
}

.menu-content > .section-heading h2 {
  font-size: 4.5rem;
}

.menu-subtitle {
  margin: 0.5rem 0 0;
  color: hsl(var(--foreground) / 0.7);
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
}

.menu-group-title {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  text-align: center;
}

.menu-group-title-spaced {
  margin-top: 4rem;
}

.menu-grid {
  display: grid;
  max-width: 64rem;
  margin-inline: auto;
  gap: 1.25rem 3rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
  transition: border-color var(--transition);
}

.menu-item:hover {
  border-color: hsl(var(--brand-flame) / 0.5);
}

.menu-item > span {
  width: 2.5rem;
  color: hsl(var(--brand-flame));
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.menu-item:hover > span {
  transform: scale(1.1);
}

.menu-item > div {
  flex: 1;
  min-width: 0;
}

.menu-item header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-item h4 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-item strong {
  color: hsl(var(--brand-flame));
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  white-space: nowrap;
}

.menu-item p {
  margin: 0.25rem 0 0;
  color: hsl(var(--foreground) / 0.6);
  font-size: 0.75rem;
}

.menu-note {
  margin: 2.5rem 0 0;
  color: hsl(var(--foreground) / 0.5);
  font-size: 0.875rem;
  text-align: center;
}

.review-grid {
  display: grid;
  max-width: 72rem;
  margin-inline: auto;
  gap: 1.5rem;
}

.review-card,
.contact-card {
  border: 1px solid hsl(0 0% 100% / 0.1);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover,
.contact-card:hover {
  transform: translateY(-0.25rem);
  border-color: hsl(var(--brand-flame) / 0.5);
}

.review-card {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(135deg, hsl(0 0% 9%), hsl(0 0% 6%));
}

.review-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  color: hsl(var(--brand-flame) / 0.3);
}

.review-card p {
  margin: 0.75rem 0 0;
  color: hsl(var(--foreground) / 0.8);
  font-style: italic;
}

.review-card strong {
  display: block;
  margin-top: 1rem;
  color: hsl(var(--brand-flame));
  font-size: 0.875rem;
}

.contact-grid {
  display: grid;
  max-width: 72rem;
  margin-inline: auto;
  gap: 2rem;
}

.map-frame {
  position: relative;
  height: 26.25rem;
  overflow: hidden;
  border: 1px solid hsl(0 0% 100% / 0.1);
  border-radius: var(--radius-md);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-cards {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-card {
  display: block;
  padding: 1.5rem;
}

.card-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--brand-flame));
}

.contact-card h3 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

.contact-card p,
.hours-list {
  margin: 0.5rem 0 0;
  color: hsl(var(--foreground) / 0.7);
  font-size: 0.875rem;
}

.opening-status {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid hsl(var(--brand-flame) / 0.3);
  border-radius: 0.875rem;
  background: hsl(var(--brand-flame) / 0.08);
}

.opening-status span {
  color: hsl(var(--brand-flame));
  font-weight: 700;
  font-size: 0.875rem;
}

.opening-status small {
  color: hsl(var(--foreground) / 0.55);
  font-size: 0.75rem;
}

.opening-status.is-closed {
  border-color: hsl(0 0% 100% / 0.14);
  background: hsl(0 0% 100% / 0.04);
}

.opening-status.is-closed span {
  color: hsl(var(--foreground) / 0.7);
}

.hours-list {
  display: grid;
  gap: 0.25rem;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours-list .is-closed {
  color: hsl(var(--foreground) / 0.4);
}

.phone-card {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, hsl(var(--brand-charcoal)), hsl(0 0% 8%));
  border-color: hsl(var(--brand-flame) / 0.4);
}

.phone-card h3 {
  margin: 0;
}

.phone-card strong {
  display: block;
  color: hsl(var(--brand-flame));
  font-size: 1.5rem;
}

.phone-badge {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--gradient-flame);
  color: #000;
}

.phone-badge .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-mark {
  width: 2.5rem;
  height: 2.5rem;
  box-shadow: 0 0 0 2px hsl(var(--brand-flame) / 0.5);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: hsl(var(--foreground));
  transition: color var(--transition);
}

.footer-social a:hover {
  color: hsl(var(--brand-flame));
}

.footer-social .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer p {
  margin: 0;
  color: hsl(var(--foreground) / 0.5);
  font-size: 0.875rem;
}

.not-found-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
  background: radial-gradient(circle at 50% 20%, hsl(var(--brand-flame) / 0.18), transparent 45%), hsl(var(--background));
}

.not-found-card {
  width: min(100%, 28rem);
  text-align: center;
}

.not-found-card img {
  width: 8rem;
  height: 8rem;
  margin-inline: auto;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: var(--shadow-glow);
}

.not-found-card h1 {
  margin: 0.5rem 0 1rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 4rem;
  line-height: 0.95;
}

.not-found-card p:not(.section-kicker) {
  margin: 0 0 1.5rem;
  color: hsl(var(--foreground) / 0.7);
}

@keyframes flicker {
  0%,
  100% {
    transform: scale(1) rotate(-1deg);
    opacity: 0.95;
    filter: drop-shadow(0 0 12px hsl(42 100% 55% / 0.7));
  }

  50% {
    transform: scale(1.05) rotate(1deg);
    opacity: 1;
    filter: drop-shadow(0 0 22px hsl(18 90% 52% / 0.9));
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 40px -10px hsl(42 100% 55% / 0.5), 0 0 80px -20px hsl(18 90% 52% / 0.4);
  }

  50% {
    box-shadow: 0 0 70px -10px hsl(42 100% 55% / 0.85), 0 0 120px -20px hsl(18 90% 52% / 0.6);
  }
}

.animate-flicker {
  animation: flicker 2.4s ease-in-out infinite;
}

.animate-glow-pulse {
  animation: glow-pulse 4s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero-copy h1 {
    font-size: 4.5rem;
  }

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

@media (min-width: 768px) {
  .hero-grid,
  .about-section,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    order: 1;
  }

  .hero-logo-wrap {
    order: 2;
  }

  .hero-copy h1 {
    font-size: 6rem;
  }

  .hero-logo {
    width: 24rem;
    height: 24rem;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 3.75rem;
  }

  .menu-content > .section-heading h2 {
    font-size: 4.5rem;
  }

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

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

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .site-container {
    padding-inline: 1.25rem;
  }

  .brand-name {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 4.5rem 1rem auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid hsl(0 0% 100% / 0.12);
    border-radius: 1rem;
    background: hsl(var(--background) / 0.98);
    box-shadow: 0 24px 60px hsl(0 0% 0% / 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity var(--transition), transform var(--transition);
  }

  .main-nav a {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid hsl(0 0% 100% / 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  body.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-call {
    padding-inline: 1rem;
    font-size: 0.75rem;
  }

  .call-desktop {
    display: none;
  }

  .call-mobile {
    display: inline;
  }

  .hero-section {
    min-height: 58rem;
  }

  .hero-grid {
    text-align: left;
  }

  .hero-logo {
    width: 15rem;
    height: 15rem;
  }

  .about-image img {
    height: 24rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .menu-item header {
    align-items: baseline;
  }

  .hours-list li {
    align-items: baseline;
  }
}

@media (max-width: 479px) {
  .site-container {
    padding-inline: 1rem;
  }

  .nav-shell {
    gap: 0.6rem;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .menu-toggle {
    width: 2.35rem;
    height: 2.35rem;
  }

  .nav-call {
    min-height: 2.35rem;
    padding-inline: 0.8rem;
  }

  .hero-copy h1 {
    font-size: 3.35rem;
  }

  .button {
    width: 100%;
  }

  .hero-rating {
    align-items: flex-start;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 3rem;
  }

  .menu-content > .section-heading h2 {
    font-size: 4rem;
  }

  .phone-card {
    align-items: flex-start;
  }
}

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