/* ========================================
   SABO SUYA - Design System & Styles
   West African Restaurant | Houston, TX
   ======================================== */

/* ----- CSS Custom Properties ----- */
:root {
  /* Colors */
  --color-deep-red: #8B1E1E;
  --color-deep-red-dark: #6B1414;
  --color-deep-red-light: #A82424;
  --color-gold: #D4A017;
  --color-gold-light: #E8B830;
  --color-gold-dark: #B8890F;
  --color-charcoal: #1A1A1A;
  --color-charcoal-light: #2A2A2A;
  --color-charcoal-lighter: #3A3A3A;
  --color-warm-beige: #F8F1E7;
  --color-warm-beige-dark: #EDE0D0;
  --color-earth-brown: #5A3E2B;
  --color-earth-brown-light: #7A5E4B;
  --color-white: #FFFFFF;
  --color-off-white: #FAFAF8;
  --color-text-dark: #1A1A1A;
  --color-text-light: #F8F1E7;
  --color-text-muted: #888;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --header-height: 80px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-glow-gold: 0 0 20px rgba(212, 160, 23, 0.3);
  --shadow-glow-red: 0 0 20px rgba(139, 30, 30, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-off-white);
  line-height: 1.6;
  -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(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
h6 { font-size: 1rem; }

p { margin-bottom: var(--space-md); }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-red { color: var(--color-deep-red); }
.text-light { color: var(--color-text-light); }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-wide {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ----- Section Spacing ----- */
.section {
  padding: var(--space-4xl) 0;
}

.section-dark {
  background-color: var(--color-charcoal);
  color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-light);
}

.dish-card h3 {
  color: var(--color-text-dark);
}

.section-beige {
  background-color: var(--color-warm-beige);
}

.section-red {
  background-color: var(--color-deep-red);
  color: var(--color-text-light);
}

/* ----- Navigation ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: var(--color-charcoal);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-deep-red), var(--color-gold));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-white);
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.logo-text span {
  color: var(--color-gold);
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-warm-beige);
  opacity: 0.7;
  font-family: var(--font-accent);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

@media (min-width: 769px) {
  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.5px;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-cta-mobile {
  display: none;
}

.nav-cta .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-deep-red), var(--color-deep-red-light));
  color: var(--color-white);
  border-color: var(--color-deep-red);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-deep-red-dark), var(--color-deep-red));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-red);
  color: var(--color-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
  color: var(--color-charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--color-off-white);
  border-color: var(--color-off-white);
}

.btn-outline:hover {
  background: var(--color-off-white);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-icon {
  font-size: 1.1rem;
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-charcoal);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(26, 26, 26, 0.7) 50%,
    rgba(139, 30, 30, 0.4) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, var(--color-gold) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--color-gold) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-xl);
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-warm-beige);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
  opacity: 0.5;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 1s forwards, bounceY 2s ease-in-out infinite 1.5s;
  opacity: 0;
}

.hero-scroll .scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

/* ----- Animations ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 160, 23, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 160, 23, 0.4); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ----- Brand Story Section ----- */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.brand-story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.brand-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.brand-story-image:hover img {
  transform: scale(1.05);
}

.brand-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(139, 30, 30, 0.3),
    transparent
  );
}

.brand-story-image .image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
}

.brand-story-content h2 {
  margin-bottom: var(--space-lg);
}

.brand-story-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(0,0,0,0.08);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-deep-red);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-accent);
  margin-top: var(--space-xs);
}

/* ----- Featured Dishes Carousel ----- */
.featured-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform var(--transition-slow);
  padding: var(--space-md) 0;
}

.dish-card {
  flex: 0 0 calc(33.333% - var(--space-xl));
  min-width: 300px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.dish-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dish-card:hover .dish-card-image img {
  transform: scale(1.1);
}

.dish-card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 0.3rem 0.8rem;
  background: var(--color-deep-red);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  font-family: var(--font-accent);
}

.dish-card-body {
  padding: var(--space-lg);
}

.dish-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.dish-card-nickname {
  font-style: italic;
  color: var(--color-earth-brown);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.dish-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.dish-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.dish-card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-deep-red);
}

.dish-card-order {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-charcoal);
  background: transparent;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* ----- Social Proof / Reviews ----- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.review-author {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
}

.review-location {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ----- Hours / Location Section ----- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.info-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-deep-red), var(--color-deep-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.4rem;
}

.info-card h4 {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.info-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-2xl);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-text-light);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-hours p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.footer-hours .day {
  opacity: 1;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1.1rem;
  opacity: 0.7;
}

.footer-social a:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-charcoal);
  opacity: 1;
}

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ----- Page Hero ----- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-charcoal);
  overflow: hidden;
}

.page-hero .hero-content {
  padding-top: calc(var(--header-height) + var(--space-2xl));
}

.page-hero .hero-subtitle {
  opacity: 0.7;
  font-size: 1rem;
}

.hero-cta-mobile {
  display: none;
}

/* ========================================
   MENU PAGE
   ======================================== */
.menu-section {
  padding: var(--space-4xl) 0;
}

.menu-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
}

.menu-tab {
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--color-charcoal);
  background: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.menu-tab:hover {
  border-color: var(--color-deep-red);
  color: var(--color-deep-red);
}

.menu-tab.active {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.menu-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
}

.menu-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.menu-item-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.menu-item-tags {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.menu-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-tag.spicy {
  background: var(--color-deep-red);
  color: var(--color-white);
}

.menu-tag.popular {
  background: var(--color-gold);
  color: var(--color-charcoal);
}

.menu-tag.vegan {
  background: #2D8A4E;
  color: var(--color-white);
}

.menu-tag.gluten-free {
  background: #8B5CF6;
  color: var(--color-white);
}

.menu-tag.signature {
  background: var(--color-charcoal);
  color: var(--color-gold);
}

.menu-item-body {
  padding: var(--space-lg);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  flex: 1;
}

.menu-item-nickname {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-earth-brown);
  margin-bottom: var(--space-xs);
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-deep-red);
  white-space: nowrap;
  margin-left: var(--space-md);
}

.menu-item-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.menu-item-ingredients {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-bottom: var(--space-md);
  font-family: var(--font-accent);
}

.menu-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.spice-meter {
  display: flex;
  align-items: center;
  gap: 3px;
}

.spice-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #ddd;
  transition: background var(--transition-fast);
}

.spice-dot.active {
  background: var(--color-deep-red);
}

.spice-dot.high {
  background: var(--color-gold);
}

.spice-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: var(--space-sm);
  color: var(--color-text-muted);
  font-family: var(--font-accent);
}

.chef-note {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-warm-beige);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-earth-brown);
}

.chef-note::before {
  content: '👨🏾‍🍳 Chef\'s Note: ';
  font-weight: 600;
  font-style: normal;
  color: var(--color-deep-red);
}

.pairing-suggestion {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  padding: 0.3rem 0.8rem;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--color-gold-dark);
  font-weight: 500;
}

.pairing-suggestion::before {
  content: '🍷';
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero-content {
  max-width: 800px;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.about-story .lead {
  font-size: 1.3rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.about-chef {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-chef-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-chef-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.about-chef-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-gold),
    var(--color-deep-red),
    transparent
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-dot {
  grid-column: 2;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-deep-red);
  margin-bottom: var(--space-xs);
}

.timeline-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  border: 3px solid var(--color-charcoal);
  z-index: 1;
  justify-self: center;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.gallery-filter {
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--color-charcoal);
  background: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-filter:hover {
  border-color: var(--color-deep-red);
  color: var(--color-deep-red);
}

.gallery-filter.active {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

.gallery-masonry {
  columns: 3;
  column-gap: var(--space-lg);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-lg);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.8),
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

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

.gallery-item-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-item-category {
  color: var(--color-gold);
  font-size: 0.8rem;
  font-family: var(--font-accent);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  padding: var(--space-2xl);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-caption {
  color: var(--color-white);
  text-align: center;
  padding: var(--space-md) 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.lightbox-close {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  z-index: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(139, 30, 30, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.contact-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-deep-red);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--color-deep-red-light);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #E5E5E5;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background: var(--color-off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-deep-red);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   RESPONSIVE - TABLETS
   ======================================== */
@media (max-width: 1024px) {
  .brand-story {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .brand-story-image {
    max-height: 400px;
  }

  .about-chef {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-chef-image {
    max-height: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .gallery-masonry {
    columns: 2;
  }

  .info-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: calc(var(--header-height) + 2rem) var(--space-xl) 160px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-wrapper {
    position: relative;
  }

  .nav-cta-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    padding: var(--space-xl) var(--space-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 320px;
  }

  .nav-cta-mobile .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
  }

  .nav-cta {
    display: none;
  }

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

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

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

  .section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .container-wide {
    padding: 0 var(--space-md);
  }

  .dish-card {
    flex: none;
    width: 100%;
  }

  .carousel-track {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .carousel-controls {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

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

  .gallery-masonry {
    columns: 1;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
  }

  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    grid-column: 2;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
  }

  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
  }

  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }

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

  .brand-stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .page-hero {
    min-height: 40vh;
  }

  .hero-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    width: 100%;
    align-items: center;
  }

  .hero-cta-mobile .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.5rem;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 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;
  }
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

/* Grade Level - Flesch Reading Ease target for body text */
body {
  font-size: 16px;
  line-height: 1.6;
}
