/* ============================================
   URBAN BURGER — Design System & Styles
   Premium Artisanal Hamburger Landing Page
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================
   0. CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Colors */
  --coal: #111111;
  --coal-light: #1a1a1a;
  --coal-lighter: #222222;
  --cream: #F5F1E8;
  --cream-dim: rgba(245, 241, 232, 0.7);
  --burnt-orange: #D97706;
  --burnt-orange-hover: #e68a1a;
  --burnt-orange-glow: rgba(217, 119, 6, 0.25);
  --brown: #8B5E3C;
  --brown-dim: rgba(139, 94, 60, 0.5);
  --green: #4CAF50;
  --green-dim: rgba(76, 175, 80, 0.15);
  --overlay-dark: rgba(17, 17, 17, 0.75);
  --overlay-navbar: rgba(17, 17, 17, 0.88);
  --card-bg: rgba(26, 26, 26, 0.6);
  --card-border: rgba(245, 241, 232, 0.06);
  --card-border-hover: rgba(217, 119, 6, 0.3);

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 8rem);
  --container-px: clamp(1.25rem, 4vw, 3rem);
  --container-max: 1400px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Transitions */
  --ease-premium: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 300ms;
  --duration-normal: 500ms;
  --duration-slow: 800ms;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 40px rgba(217, 119, 6, 0.15), 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-btn: 0 4px 16px rgba(217, 119, 6, 0.3);

  /* Navbar */
  --navbar-h: 72px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--navbar-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--coal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

ul, ol {
  list-style: none;
}

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

/* Selection */
::selection {
  background: var(--burnt-orange);
  color: var(--coal);
}

/* Scrollbar (Webkit) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--coal);
}
::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}


/* ============================================
   2. Utility & Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--burnt-orange);
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

/* Text utilities */
.text-orange { color: var(--burnt-orange); }
.text-cream { color: var(--cream); }
.text-brown { color: var(--brown); }
.text-green { color: var(--green); }
.text-dim { color: var(--cream-dim); }

.font-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}


/* ============================================
   3. Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.03em;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  max-width: 65ch;
  color: var(--cream-dim);
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  font-weight: 300;
}


/* ============================================
   4. Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-premium);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.btn:active {
  transform: scale(0.97);
}

/* Primary */
.btn-primary {
  background: var(--burnt-orange);
  color: var(--coal);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--burnt-orange-hover);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

/* Secondary / Ghost */
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 241, 232, 0.25);
}

.btn-secondary:hover {
  border-color: var(--burnt-orange);
  color: var(--burnt-orange);
  background: rgba(217, 119, 6, 0.06);
  transform: translateY(-2px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.2);
  transition: transform var(--duration-fast) var(--ease-smooth);
  font-size: 0.85rem;
}

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


/* ============================================
   5. Navbar / Header
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-premium);
  background: transparent;
}

.navbar.scrolled {
  background: var(--overlay-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(245, 241, 232, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 44px;
  width: auto;
  transition: opacity var(--duration-fast) var(--ease-smooth);
  flex-shrink: 0;
}

.navbar-logo:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burnt-orange);
  border-radius: var(--radius-pill);
  transition: width var(--duration-fast) var(--ease-premium);
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 110;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-premium);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-premium);
}

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

.mobile-menu .nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(24px);
  transition: all var(--duration-normal) var(--ease-premium);
}

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

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 100ms; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 160ms; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 220ms; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 280ms; }
.mobile-menu.active .nav-link:nth-child(5) { transition-delay: 340ms; }


/* ============================================
   6. Hero Section
   ============================================ */
.hero {
  position: relative;
  height: 300vh;
  overflow: clip;
}

.hero-video-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

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

.hero-content {
  position: absolute;
  inset: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  transition: opacity 0.2s linear, transform 0.2s linear;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.25);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burnt-orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 .text-orange {
  display: block;
  font-size: 1.1em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.hero-scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: scroll-hint 2.5s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream), transparent);
}

@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}


/* ============================================
   7. Menu / Cardápio
   ============================================ */
.menu-section {
  background: var(--coal);
}

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

.menu-header h2 {
  margin-bottom: 0.75rem;
}

.menu-header p {
  margin: 0 auto;
  font-size: 1rem;
}

/* Category Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(245, 241, 232, 0.1);
  background: transparent;
  color: var(--cream-dim);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-premium);
}

.menu-tab:hover {
  border-color: rgba(245, 241, 232, 0.25);
  color: var(--cream);
}

.menu-tab.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: var(--coal);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Burger Card — Double-bezel architecture */
.burger-card {
  border-radius: var(--radius-lg);
  background: rgba(245, 241, 232, 0.03);
  border: 1px solid var(--card-border);
  padding: 6px;
  transition: all var(--duration-normal) var(--ease-premium);
  overflow: hidden;
}

.burger-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px);
}

.burger-card-inner {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: var(--coal-light);
}

.burger-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--coal-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-card-img img {
  width: 75%;
  height: auto;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease-premium);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.burger-card:hover .burger-card-img img {
  transform: scale(1.08) rotate(-2deg);
}

.burger-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(217, 119, 6, 0.15);
  color: var(--burnt-orange);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.burger-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.burger-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--cream);
}

.burger-card-slogan {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}

/* Card hidden state for filtering */
.burger-card.hidden {
  display: none;
}


/* ============================================
   8. Sobre / Institucional
   ============================================ */
.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(245, 241, 232, 0.08);
  pointer-events: none;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-premium);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.03);
}

.about-accent-line {
  width: 60px;
  height: 3px;
  background: var(--burnt-orange);
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(245, 241, 232, 0.03);
  border: 1px solid rgba(245, 241, 232, 0.05);
}

.about-highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-highlight-icon.orange { background: rgba(217, 119, 6, 0.12); }
.about-highlight-icon.green { background: var(--green-dim); }
.about-highlight-icon.brown { background: rgba(139, 94, 60, 0.15); }

.about-highlight h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  color: var(--cream);
}

.about-highlight p {
  font-size: 0.75rem;
  color: var(--cream-dim);
  line-height: 1.5;
}


/* ============================================
   9. Delivery
   ============================================ */
.delivery-section {
  background:
    linear-gradient(135deg, var(--coal) 0%, var(--coal-light) 50%, var(--coal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.delivery-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(217, 119, 6, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.delivery-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.delivery-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
}

.delivery-content h2 {
  margin-bottom: 1rem;
}

.delivery-content p {
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

.delivery-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}


/* ============================================
   10. Contato
   ============================================ */
.contact-section {
  background: var(--coal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--burnt-orange);
}

.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--burnt-orange);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 400;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.06);
  aspect-ratio: 16 / 10;
  background: var(--coal-lighter);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) brightness(0.6) contrast(1.2);
  opacity: 0.6;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.contact-map:hover iframe {
  opacity: 0.85;
}


/* ============================================
   11. Footer
   ============================================ */
.footer {
  background: var(--coal-light);
  border-top: 1px solid rgba(245, 241, 232, 0.05);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: var(--cream-dim);
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--burnt-orange);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-premium);
}

.footer-social:hover {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.3);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--cream-dim);
  transition: fill var(--duration-fast) var(--ease-smooth);
}

.footer-social:hover svg {
  fill: var(--burnt-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.05);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245, 241, 232, 0.35);
}


/* ============================================
   12. Scroll Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--duration-slow) var(--ease-premium),
    transform var(--duration-slow) var(--ease-premium);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }
.reveal-delay-7 { transition-delay: 560ms; }
.reveal-delay-8 { transition-delay: 640ms; }
.reveal-delay-9 { transition-delay: 720ms; }

/* Reduced motion */
@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 {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    transform: none;
  }
}


/* ============================================
   13. Responsive
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
    --section-py: clamp(3.5rem, 8vw, 5rem);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

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

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .menu-tabs {
    gap: 0.35rem;
  }

  .menu-tab {
    font-size: 0.7rem;
    padding: 0.55rem 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-wrap {
    order: -1;
  }

  .about-image {
    aspect-ratio: 3 / 2;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-map {
    aspect-ratio: 16 / 9;
  }

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

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .burger-card-info {
    padding: 1rem 1.2rem 1.2rem;
  }

  .burger-card-name {
    font-size: 1.3rem;
  }

  .burger-card-slogan {
    font-size: 0.8rem;
  }
}
