/* ========================================
   Hollywood's Montreal - Modern 2026 Design
   ======================================== */

/* CSS Variables */
:root {
  --primary: #C41E3A;
  --primary-dark: #9B1A2F;
  --primary-light: #E8344E;
  --gold: #D4AF37;
  --gold-light: #E5C35C;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --charcoal: #1A1A1A;
  --charcoal-light: #2C2C2C;
  --text: #333333;
  --text-muted: #666666;
  --white: #FFFFFF;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  
  --nav-height: 80px;
  --section-padding: clamp(60px, 10vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

/* ========================================
   Navigation - Glassmorphism
   ======================================== */
.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out-quart);
}

.nav-glass.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-glass.scrolled .nav-logo {
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-quart);
}

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

.nav-glass.scrolled .nav-links a {
  color: var(--text);
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out-quart);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-glass.scrolled .nav-toggle span {
  background: var(--charcoal);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-quart);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
}

.mobile-menu-content a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-quart);
}

.mobile-menu.active .mobile-menu-content a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu-content a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-content a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-content a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-content a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-content a:nth-child(5) { transition-delay: 0.3s; }

.mobile-cta {
  background: var(--primary) !important;
  padding: 1rem 2rem !important;
  border-radius: 100px;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
}

/* ========================================
   Hero Section - Parallax
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #7A1525 100%);
  will-change: transform;
}

.hero-parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

/* Logo Placeholder - Glassmorphism */
.logo-placeholder {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.logo-inner {
  text-align: center;
  color: var(--white);
}

/* Spinning Logo - Diner Sign Swing */
.logo-spinner {
  width: 260px;
  height: 260px;
  margin: 0 auto 1.5rem;
  perspective: 800px;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: swing-sign 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
  transform-origin: center top;
}

@keyframes swing-sign {
  0%, 100% { transform: rotateY(-25deg); }
  50% { transform: rotateY(25deg); }
}

.logo-inner span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-inner small {
  font-size: 0.7rem;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.title-line {
  display: block;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
}

.title-accent {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-style: italic;
  color: var(--gold);
  margin-top: -0.2em;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out-quart);
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--white);
}

.about-img-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-content {
  padding: 2rem 0;
}

.about-text {
  margin-bottom: 2.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   Marquee
   ======================================== */
.marquee-section {
  background: var(--charcoal);
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-dot {
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  vertical-align: middle;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   Menu Section
   ======================================== */
.menu {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.menu-category {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-out-quart);
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.menu-category-small {
  padding: 1.5rem;
}

.category-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-header h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

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

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--cream-dark);
  transition: all 0.3s;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  padding-left: 0.5rem;
}

.menu-item.featured {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: 12px;
  border-bottom: none;
}

.item-info {
  flex: 1;
}

.item-name {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.item-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(196, 30, 58, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  margin-left: 1rem;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--charcoal);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery .section-label {
  color: var(--gold);
}

.gallery .section-title {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gallery-grid-simple {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 350px;
  gap: 1.5rem;
  max-width: 1200px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quart);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-quart);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

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

/* ========================================
   TikTok Section
   ======================================== */
.tiktok-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #010101 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.tiktok-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(238, 29, 82, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(105, 201, 208, 0.15) 0%, transparent 50%);
}

.tiktok-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.tiktok-content {
  position: relative;
}

.tiktok-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tiktok-video blockquote {
  margin: 0 !important;
}

.tiktok-icon {
  width: 80px;
  height: 80px;
  margin: 0 0 2rem;
  background: linear-gradient(135deg, #EE1D52, #69C9D0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 900px) {
  .tiktok-icon {
    margin: 0 auto 2rem;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tiktok-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.tiktok-content h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.tiktok-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 400px;
}

@media (max-width: 900px) {
  .tiktok-content p {
    max-width: 100%;
  }
}

.btn-tiktok {
  background: linear-gradient(135deg, #EE1D52 0%, #69C9D0 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-tiktok:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(238, 29, 82, 0.3);
}

/* ========================================
   Location Section
   ======================================== */
.location {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.location-map {
  display: flex;
  flex-direction: column;
}

.location-map .map-container {
  flex: 1;
  min-height: 400px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 16px;
  transition: all 0.3s var(--ease-out-quart);
}

.info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.info-content h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.info-content a {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--primary);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.hours-row.closed span:last-child {
  color: var(--primary);
  font-weight: 600;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-quart);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .menu-categories {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  
  .gallery-grid-simple {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
  
  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-item-tall {
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-img-accent {
    right: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  .about-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  
  .gallery-grid-simple {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  
  .gallery-item-large,
  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .map-container {
    min-height: 350px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .logo-placeholder {
    width: 140px;
    height: 140px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  
  .gallery-grid-simple {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto;
  }
  
  .hours-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Allergen Warning */
.allergen-warning {
  color: #ff6b35;
  font-size: 0.85em;
  cursor: help;
}

.allergen-note {
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  padding: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.allergen-note span {
  color: #ff6b35;
}


/* Peanut Note - subtle inline warning */
.peanut-note {
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  display: block;
  margin-top: 4px;
}

/* Size indicator for S/L items */
.price-with-sizes {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.price-size-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.size-label {
  font-size: 0.6rem;
  color: #c74b4b;
  font-weight: 600;
  margin-bottom: 2px;
}

.price-with-sizes .item-price {
  margin-left: 0;
}

/* Beef Tallow Tagline */
.tallow-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.5px;
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .tallow-tagline {
    font-size: 0.95rem;
    margin-top: 12px;
  }
}
