/* =======================================
   ORIGINAL PIZZA OF BROOKLYN
   Design System & Styles
   ======================================= */

/* ---------- CSS Reset & Variables ---------- */
:root {
  --bg-primary: #121212;
  --bg-secondary: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-card-hover: #252525;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #B8892F;
  --red: #C62828;
  --red-dark: #8E0000;
  --red-light: #FF5F52;
  --cream: #F5F0E8;
  --cream-dim: #C5C0B7;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1200px;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 32px rgba(212, 168, 83, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Accessibility ---------- */

/* Skip Navigation (WCAG 2.4.1) — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Focus Indicators (WCAG 2.4.7) — visible, high-contrast */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
.menu-tab:focus-visible,
.dot:focus-visible,
.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Remove default focus ring for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced Motion (WCAG 2.3.3) */
@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;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-bg-img {
    animation: none;
    transform: scale(1);
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Labels & Titles ---------- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(212, 168, 83, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--cream);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cream);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

.nav-link.active {
  color: var(--gold);
}

.nav-phone {
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold) !important;
  font-weight: 600;
}

.nav-phone::after {
  display: none;
}

.nav-phone:hover {
  background: var(--gold);
  color: var(--bg-primary) !important;
}

.phone-icon {
  margin-right: 4px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  animation: heroFadeIn 1.4s ease-out;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

/* ==========================================
   ABOUT
   ========================================== */
.about {
  padding: 120px 0;
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

.about-badge-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  text-align: center;
}

.badge-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.about-text p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p strong {
  color: var(--cream);
}

.about-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ==========================================
   MENU
   ========================================== */
.menu {
  background: var(--bg-secondary);
}

.menu-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.menu-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(18, 18, 18, 0.3) 0%,
      rgba(26, 26, 26, 0.95) 100%);
}

.menu-hero-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px 0 40px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  transition: all var(--transition);
  background: transparent;
}

.menu-tab:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
}

.menu-tab.active {
  color: var(--bg-primary);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  padding-bottom: 48px;
}

.menu-grid--hidden {
  display: none;
}

/* Menu Cards */
.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.menu-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.menu-card-header {
  margin-bottom: 12px;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.menu-item-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.price-tag strong {
  color: var(--gold-light);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.menu-item-toppings {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.toppings-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.topping-price {
  display: block;
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-bottom: 2px;
}

.toppings-list {
  font-size: 0.8rem;
  color: var(--cream-dim);
  opacity: 0.7;
  margin-top: 6px;
  line-height: 1.5;
}

.menu-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-dim);
  opacity: 0.6;
  padding: 0 0 60px;
  font-style: italic;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, var(--red-dark), var(--red), #A52020);
  text-align: center;
}

.testimonials .section-title {
  margin-bottom: 48px;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-viewport {
  overflow: hidden;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.carousel-arrow--prev {
  left: 0;
}

.carousel-arrow--next {
  right: 0;
}

.testimonial-track {
  display: flex;
  width: 300%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  width: calc(100% / 3);
  flex-shrink: 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-stars {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0.95;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.2);
}

.dot:hover {
  border-color: var(--white);
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
  padding: 100px 0;
  background: var(--bg-primary);
}

.gallery .section-label,
.gallery .section-title {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: 50px;
}

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

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

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-hero {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.footer-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(18, 18, 18, 0.5) 0%,
      rgba(18, 18, 18, 1) 100%);
}

.footer-hero-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.footer-hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 1.1rem;
}

.footer-main {
  background: var(--bg-primary);
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-row .day {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.hours-row .time {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-col--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cream);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-item:hover {
  color: var(--gold);
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.15);
}

.footer-bottom {
  background: var(--bg-secondary);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-dim);
  opacity: 0.6;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Mobile Nav — always solid background for readability */
  .navbar {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(16px);
  }

  .nav-logo img {
    filter: none;
    height: 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    z-index: 999;
    transition: right var(--transition);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 14px 8px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link::after {
    display: none;
  }

  .nav-phone {
    margin-top: 16px;
    justify-content: center;
    text-align: center;
    display: flex !important;
  }

  /* Hide phone button from nav bar on mobile, only show in slide-out */
  .nav-links:not(.active) .nav-phone {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 14px 32px;
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* About */
  .about {
    padding: 64px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-img-wrapper img {
    height: 300px;
  }

  .about-stats {
    gap: 24px;
    justify-content: center;
  }

  /* Menu — horizontally scrollable tabs */
  .menu-hero {
    height: 220px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    padding: 28px 16px 24px;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    padding: 10px 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .menu-card:hover {
    transform: none;
  }

  /* Gallery */
  .gallery {
    padding: 64px 0;
  }

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

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

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-overlay span {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .testimonials {
    padding: 64px 0;
  }

  .testimonial-carousel {
    padding: 0 32px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  /* Footer */
  .footer-hero {
    height: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-col--center {
    order: -1;
  }

  .footer-logo {
    height: 40px;
  }

  .hours-row {
    justify-content: center;
    gap: 12px;
  }

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

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

  /* Lightbox mobile */
  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 2rem;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 18px;
    letter-spacing: 3px;
  }

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

  .about-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .menu-card {
    padding: 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-img-wrapper img {
    height: 250px;
  }

  .footer-map iframe {
    height: 200px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .btn {
    max-width: 250px;
    font-size: 0.85rem;
  }
}