/**
 * CRUNCHES BURGER - OFFICIAL STYLESHEET
 * Bold Typography Design Theme
 * Pure CSS3 with modern CSS custom properties
 */

:root {
  /* Bold Typography Dark Palette */
  --bg-darkest: #080808;
  --bg-main: #0d0d0d;
  --bg-surface: #121212;
  --bg-surface-elevated: #171717;
  --bg-card: #121212;
  --bg-card-hover: #1a1a1a;
  
  /* Bold Flame Red-Orange Accent */
  --accent-flame: #f24c27;
  --accent-flame-hover: #ff5e3b;
  --accent-flame-muted: rgba(242, 76, 39, 0.14);
  --accent-flame-glow: rgba(242, 76, 39, 0.35);
  --accent-amber: #e59324;
  --accent-gradient: linear-gradient(135deg, #f24c27 0%, #b31d00 100%);

  /* Typography Colors */
  --text-primary: #f5f5f4;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-faint: rgba(255, 255, 255, 0.15);
  --text-inverse: #080808;

  /* Structural Dividers & Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --border-accent: rgba(242, 76, 39, 0.45);

  /* Elevation & Burger Shadows */
  --shadow-card: 0 20px 45px -15px rgba(0, 0, 0, 0.75);
  --shadow-burger: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 10px 30px -5px rgba(242, 76, 39, 0.4);
  --shadow-navbar: 0 10px 30px -10px rgba(0, 0, 0, 0.95);

  /* Typography Stacks - Bold Typography theme */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-editorial: 'Playfair Display', Georgia, serif;

  /* Layout */
  --max-width: 1240px;
  --header-height: 74px;
}

/* Standalone CSS Utilities & Helpers */
.font-editorial {
  font-family: var(--font-editorial);
}

.font-sans {
  font-family: var(--font-sans);
}

.burger-shadow {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

.accent-gradient {
  background: linear-gradient(135deg, #f24c27 0%, #b31d00 100%);
}

.text-balance {
  text-wrap: balance;
}

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

.w-full { width: 100%; }
.w-4 { width: 1rem; height: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; height: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; height: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; height: 1.75rem; }
.h-7 { height: 1.75rem; }

.text-center { text-align: center; }
.fill-current { fill: currentColor; }

.text-neutral-400 { color: rgba(255, 255, 255, 0.65); }
.text-neutral-500 { color: rgba(255, 255, 255, 0.4); }
.text-neutral-600 { color: rgba(255, 255, 255, 0.25); }
.text-white { color: #ffffff; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-auto { margin-top: auto; }
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.pt-6 { padding-top: 1.5rem; }
.p-4 { padding: 1rem; }
.rounded { border-radius: 4px; }

.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }

.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-lg { max-width: 32rem; }
.max-w-sm { max-width: 24rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.tracking-wider { letter-spacing: 0.08em; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.transition { transition: all 0.2s ease; }

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:mt-0 { margin-top: 0; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

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

html {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

/* Subtle Film Grain Noise Texture */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography Standards */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  outline: none;
}

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

/* Layout Utilities */
.container-custom {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* Editorial Eyebrow & Badges */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent-flame);
  margin-bottom: 1rem;
  font-weight: 800;
}

.eyebrow-tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: var(--accent-flame);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  background: var(--accent-flame-muted);
  border: 1px solid rgba(242, 76, 39, 0.3);
  color: #ff6847;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

/* Buttons */
.btn-primary,
.hero-btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f24c27 0%, #b31d00 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 4px;
  border: none;
  box-shadow: 0 10px 30px -5px rgba(242, 76, 39, 0.45);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, filter 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary:hover,
.hero-btn-gradient:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 40px -4px rgba(242, 76, 39, 0.65);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero-circle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.hero-circle-btn:hover {
  background: #ffffff;
  color: #080808;
  transform: scale(1.06);
  border-color: #ffffff;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #081d0f;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  min-height: 48px;
}

.btn-wa:hover {
  background-color: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-scrolled {
  background-color: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-navbar);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.brand-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-flame);
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-flame);
}

.brand-logo-sub {
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.25rem;
  border-left: 1px solid var(--border-medium);
  padding-left: 0.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent-flame);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-flame);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-wrapper {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-cta-wrapper {
    display: flex;
  }
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 900px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

/* Mobile Nav Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.backdrop-open {
  opacity: 1;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background-color: var(--bg-surface-elevated);
  border-left: 1px solid var(--border-medium);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.drawer-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav-link:hover {
  color: var(--accent-flame);
}

/* ==========================================================================
   HERO SECTION - BOLD TYPOGRAPHY SPLIT LAYOUT
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 0;
  overflow: hidden;
  background-color: #080808;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.22) contrast(1.25) grayscale(40%);
  transform: scale(1.04);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 35%, rgba(242, 76, 39, 0.08) 0%, transparent 60%),
              linear-gradient(to bottom, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.75) 50%, #080808 100%),
              linear-gradient(to right, #080808 0%, rgba(8, 8, 8, 0.85) 50%, rgba(8, 8, 8, 0.4) 100%);
}

.hero-main-container {
  width: 100%;
  margin: auto 0;
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
  }
}

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

.hero-title {
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  line-height: 0.88;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.hero-title span.accent-word {
  color: #ffffff;
  display: block;
}

.hero-desc {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-location-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.hero-location-bar svg {
  color: var(--accent-flame);
}

/* Hero Visual Showcase (Right Column) */
.hero-visual-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 380px;
}

@media (min-width: 768px) {
  .hero-visual-showcase {
    min-height: 520px;
  }
}

.hero-ring-outer {
  position: absolute;
  width: 580px;
  height: 580px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-ring-inner {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 0.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 9999px;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-burger-img-wrapper {
  position: relative;
  z-index: 10;
  width: clamp(260px, 32vw, 440px);
  height: clamp(260px, 32vw, 440px);
  border-radius: 14px;
  overflow: hidden;
}

.hero-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(15%);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-showcase:hover .hero-showcase-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* Floating Cards on Hero Showcase */
.hero-floating-card-staff {
  position: absolute;
  right: -6px;
  top: 10%;
  z-index: 20;
  background: #121212;
  padding: 1.25rem;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.hero-floating-card-staff:hover {
  transform: translateY(-4px);
  border-color: var(--accent-flame);
}

.hero-badge-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f24c27;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.hero-badge-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.hero-badge-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-bottom: 0.85rem;
}

.hero-badge-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-badge-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
}

.hero-badge-action {
  background: transparent;
  border: none;
  border-bottom: 1px solid #f24c27;
  padding: 0 0 2px 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hero-badge-action:hover {
  color: var(--accent-flame);
}

.hero-floating-card-quote {
  position: absolute;
  left: -6px;
  bottom: 6%;
  z-index: 20;
  background: #ffffff;
  color: #080808;
  padding: 1.35rem 1.4rem;
  width: 215px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.95);
  text-align: left;
}

.hero-quote-stars {
  font-size: 11px;
  color: #e59324;
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}

.hero-quote-text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  font-style: italic;
  color: #080808;
}

.hero-quote-author {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 900;
  opacity: 0.5;
  letter-spacing: 0.05em;
  color: #080808;
}

/* Bottom Meta Strip (4-Column Minimal Grid) */
.hero-bottom-bar {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0d0d0d;
  position: relative;
  z-index: 20;
  margin-top: auto;
}

.hero-bottom-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .hero-bottom-bar-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 0;
  }
}

.hero-meta-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

@media (min-width: 768px) {
  .hero-meta-col {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 1.75rem;
  }
}

.hero-meta-col:first-child {
  padding-left: 0;
}

.hero-meta-col:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
}

.hero-meta-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: #f5f5f4;
}

.hero-meta-link {
  transition: color 0.2s ease;
}

.hero-meta-link:hover {
  color: var(--accent-flame);
}

.hero-meta-col-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero-meta-col-rating {
    justify-content: flex-end;
  }
}

.hero-rating-num {
  font-family: var(--font-editorial);
  font-size: 2.75rem;
  font-style: italic;
  line-height: 1;
  color: #ffffff;
  font-weight: 900;
}

.hero-rating-label {
  font-size: 10px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-align: left;
  opacity: 0.65;
  color: #ffffff;
}

/* Rotated Vertical Watermark Text */
.hero-side-watermark {
  display: none;
}

@media (min-width: 1280px) {
  .hero-side-watermark {
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 9px;
    letter-spacing: 0.6em;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
  }
}

@media (max-width: 640px) {
  .hero-floating-card-staff {
    display: none;
  }
  .hero-floating-card-quote {
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   STATUS INDICATORS (LIVE OPEN/CLOSED BADGE)
   ========================================================================== */
.live-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background-color: rgba(18, 18, 23, 0.9);
  border: 1px solid var(--border-medium);
  border-radius: 4px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-open {
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: blinkOpen 1.8s infinite ease-in-out;
}

.text-open {
  color: #4ade80;
}

.dot-closed {
  background-color: var(--accent-amber);
  box-shadow: 0 0 8px var(--accent-amber);
}

.text-closed {
  color: #fbbf24;
}

@keyframes blinkOpen {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==========================================================================
   BRAND INTRODUCTION SECTION
   ========================================================================== */
.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .brand-intro-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
  }
}

.brand-intro-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
}

.brand-intro-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brand-intro-image-wrap:hover .brand-intro-img {
  transform: scale(1.03);
}

.brand-intro-stamp {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 10, 13, 0.9);
  border: 1px solid var(--border-medium);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.brand-intro-stamp-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-flame);
  text-transform: uppercase;
}

.brand-intro-stamp-sub {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
}

.brand-intro-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.brand-intro-p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.brand-fact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.brand-fact-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.brand-fact-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ==========================================================================
   FEATURED MENU SECTION
   ========================================================================== */
.menu-section {
  background-color: var(--bg-surface);
  position: relative;
}

.menu-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.menu-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

/* Category Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-tab-btn {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  transition: all 0.2s ease;
  min-height: 42px;
}

.filter-tab-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, #f24c27 0%, #b31d00 100%);
  color: #ffffff;
  border-color: #f24c27;
  box-shadow: 0 6px 20px rgba(242, 76, 39, 0.45);
}

/* Menu Grid & Cards */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.menu-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-flame);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.9);
}

.menu-card-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #000;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

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

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.2) 40%, transparent 100%);
}

.menu-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #f24c27 0%, #b31d00 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
  z-index: 2;
}

.menu-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.menu-card-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-flame);
  font-weight: 900;
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.menu-card-title {
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  color: #ffffff;
}

.menu-card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.menu-order-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  min-height: 44px;
}

.menu-card:hover .menu-order-btn {
  background: linear-gradient(135deg, #f24c27 0%, #b31d00 100%);
  border-color: #f24c27;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(242, 76, 39, 0.4);
}

/* ==========================================================================
   SIGNATURE STATEMENT SECTION
   ========================================================================== */
.signature-section {
  position: relative;
  padding: 8rem 0;
  background-color: #080808;
  overflow: hidden;
}

.signature-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.signature-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.2) contrast(1.3);
  transform: scale(1.05);
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(8, 8, 8, 0.85) 80%),
              linear-gradient(to bottom, #121212 0%, transparent 30%, transparent 70%, #0d0d0d 100%);
}

.signature-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.signature-headline {
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.9;
  font-weight: 900;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.signature-statements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.signature-statement-item {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-statement-item::after {
  content: "/";
  color: var(--accent-flame);
  font-weight: 400;
}

.signature-statement-item:last-child::after {
  content: "";
}

/* ==========================================================================
   WHY CRUNCHES (FEATURES SECTION)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2.25rem 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  border-color: var(--accent-flame);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background-color: var(--accent-flame-muted);
  border: 1px solid rgba(242, 76, 39, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-flame);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ==========================================================================
   GALLERY (MASONRY LAYOUT)
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1.25rem;
  }
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.92) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}

.gallery-item-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f24c27 0%, #b31d00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   REVIEWS & SOCIAL PROOF
   ========================================================================== */
.reviews-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.85);
}

@media (min-width: 768px) {
  .reviews-card {
    padding: 4rem 3.5rem;
  }
}

.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #fbbf24;
  margin-bottom: 1.25rem;
}

.rating-score {
  font-family: var(--font-editorial);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-style: italic;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.rating-meta {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ==========================================================================
   LOCATION & OPENING HOURS
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.location-info-card,
.hours-info-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}

.location-address-block {
  margin: 1.75rem 0 2.25rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent-flame);
}

.location-address-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.location-address-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hours Display */
.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-timing-box {
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.hours-time-large {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.hours-note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FINAL ORDER CTA
   ========================================================================== */
.final-cta-section {
  position: relative;
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.final-cta-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(80%) brightness(0.5);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.final-cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4.5rem 0 3rem 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-brand-city {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent-flame);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 900;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-flame);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   STICKY MOBILE BOTTOM ORDER BAR
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 17, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-medium);
  padding: 0.75rem 1rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-bar.bar-visible {
  transform: translateY(0);
}

.mobile-bottom-bar-info {
  display: flex;
  flex-direction: column;
}

.mobile-bottom-bar-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
}

.mobile-bottom-bar-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
}

.btn-mobile-order {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 44px;
  padding: 0 1.25rem;
  background-color: var(--accent-flame);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
}

/* ==========================================================================
   ITEM DETAIL MODAL / BOTTOM SHEET
   ========================================================================== */
.modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 768px) {
  .modal-wrapper {
    align-items: center;
    padding: 1.5rem;
  }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: 12px 12px 0 0;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .modal-container {
    border-radius: 12px;
    transform: scale(0.94) translateY(20px);
  }
}

.modal-visible .modal-backdrop {
  opacity: 1;
}

.modal-visible .modal-container {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .modal-visible .modal-container {
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14, 14, 17, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--accent-flame);
}

.modal-item-img-wrap {
  width: 100%;
  height: 280px;
  position: relative;
  background-color: #000;
}

.modal-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 1.75rem 1.5rem;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-size: 1.75rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.modal-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  margin-bottom: 1.75rem;
}

.modal-qty-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.qty-btn:hover {
  background: var(--accent-flame);
  border-color: var(--accent-flame);
}

.qty-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  min-width: 24px;
  text-align: center;
}

.modal-order-action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-subnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   LIGHTBOX GALLERY MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 20, 26, 0.85);
  border: 1px solid var(--border-medium);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: var(--accent-flame);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* ==========================================================================
   ANIMATIONS & REVEALS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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