/* ========================================
   MOMOYAMA SUSHI - COMPLETE STYLESHEET
   Premium Japanese Restaurant Website
   ======================================== */

/* CSS Variables - Exact Color Palette */
:root {
  --primary-black: #1A1A1A;
  --warm-cream: #F5F0E8;
  --muted-red: #C43E2A;
  --dark-gold: #B8860B;
  --warm-taupe: #8C8279;
  --dark-brown: #2A2520;
  --footer-dark: #141210;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 60px;
  --container-max: 1200px;
  --grid-gap: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--warm-taupe);
  background: var(--warm-cream);
  -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 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 42px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 {
  font-size: 32px;
}

h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dark-gold);
}

.section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dark-gold);
  margin-bottom: 16px;
}

/* Text Colors */
.text-cream { color: var(--warm-cream); }
.text-dark { color: var(--primary-black); }
.text-red { color: var(--muted-red); }
.text-gold { color: var(--dark-gold); }
.text-taupe { color: var(--warm-taupe); }

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--dark-gold);
  color: var(--warm-cream);
}

.btn-outline-gold:hover {
  background: var(--dark-gold);
  color: var(--primary-black);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.btn-filled-red {
  background: var(--muted-red);
  color: var(--warm-cream);
}

.btn-filled-red:hover {
  background: #a93524;
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(196, 62, 42, 0.3);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184, 134, 11, 0.1);
  padding: 12px 0;
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--muted-red);
}

.navbar-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--warm-cream);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark-gold);
  transition: width 0.3s ease;
}

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

.navbar-cta {
  padding: 10px 24px;
  border: 1px solid var(--dark-gold);
  border-radius: 8px;
  color: var(--warm-cream);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.navbar-cta:hover {
  background: var(--dark-gold);
  color: var(--primary-black);
  transform: scale(1.02);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-cream);
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 28px;
  color: var(--warm-cream);
  transition: color 0.3s ease;
}

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

.mobile-cta {
  padding: 14px 32px;
  background: var(--muted-red);
  color: var(--warm-cream);
  border-radius: 8px;
  font-weight: 500;
  margin-top: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  min-height: 100vh;
  background: var(--primary-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%),
    url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?w=1920&q=80') center/cover;
  filter: brightness(1.0) contrast(1.0);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  margin-top: 60px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dark-gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 64px;
  color: var(--warm-cream);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--warm-taupe);
  max-width: 500px;
  margin: 0 auto 40px;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pulse 2s ease-in-out infinite;
}

.scroll-indicator::before {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--dark-gold);
  opacity: 0.5;
}

.scroll-indicator i {
  color: var(--dark-gold);
  font-size: 12px;
  opacity: 0.5;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ========================================
   WELCOME SECTION
   ======================================== */

.welcome-section {
  background: var(--warm-cream);
  padding: var(--section-padding) 0;
  position: relative;
}

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

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

.welcome-image {
  position: relative;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  height: 500px;
}

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

.welcome-content {
  padding-left: 60px;
}

.welcome-title {
  color: var(--primary-black);
  margin-bottom: 24px;
  position: relative;
}

.welcome-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: var(--muted-red);
  opacity: 0.2;
  margin-top: 16px;
  border-radius: 2px;
}

.welcome-text {
  color: var(--warm-taupe);
  margin-bottom: 16px;
}

.welcome-cta {
  margin-top: 32px;
}

/* ========================================
   SIGNATURE DISHES SECTION
   ======================================== */

.signature-section {
  background: var(--primary-black);
  padding: var(--section-padding) 0;
  position: relative;
}

.signature-header {
  text-align: center;
  margin-bottom: 60px;
}

.signature-title {
  color: var(--warm-cream);
  margin-bottom: 12px;
}

.signature-subtitle {
  color: var(--warm-taupe);
  font-size: 17px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dish-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(184, 134, 11, 0.3);
}

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

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

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

.dish-content {
  padding: 24px;
}

.dish-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--warm-cream);
  margin-bottom: 8px;
}

.dish-description {
  font-size: 15px;
  color: var(--warm-taupe);
  line-height: 1.6;
}

/* ========================================
   WHY MOMOYAMA SECTION
   ======================================== */

.why-section {
  background: var(--warm-cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 30-15 30-15-30z' fill='%23B8860B' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-title {
  color: var(--primary-black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--dark-gold);
}

.why-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.why-card-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-black);
  margin-bottom: 8px;
}

.why-card-text {
  font-size: 15px;
  color: var(--warm-taupe);
  max-width: 240px;
  margin: 0 auto;
}

/* ========================================
   SPECIAL OFFER SECTION
   ======================================== */

.offer-section {
  background: linear-gradient(135deg, var(--primary-black) 0%, #2A1510 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.offer-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.offer-divider {
  width: 60px;
  height: 1px;
  background: var(--dark-gold);
  margin: 0 auto 32px;
  position: relative;
}

.offer-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--dark-gold);
  transform: translateX(-50%) rotate(45deg);
}

.offer-title {
  color: var(--warm-cream);
  font-size: 36px;
  margin-bottom: 24px;
}

.offer-text {
  color: var(--warm-cream);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
}

.offer-ampersand {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--dark-gold);
  margin: 8px 0;
}

.offer-cta {
  margin-top: 32px;
}

.offer-phone {
  margin-top: 24px;
  font-size: 15px;
  color: var(--warm-taupe);
}

.offer-phone a {
  color: var(--warm-cream);
  font-weight: 500;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews-section {
  background: var(--warm-cream);
  padding: 80px 0;
  text-align: center;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.reviews-score {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 72px;
  color: var(--primary-black);
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-stars i {
  color: var(--dark-gold);
  font-size: 20px;
}

.reviews-stars i.empty {
  color: var(--warm-taupe);
  opacity: 0.3;
}

.reviews-count {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--warm-taupe);
  margin-bottom: 24px;
}

.reviews-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.review-quote {
  font-style: italic;
  font-size: 16px;
  color: var(--warm-taupe);
  position: relative;
  padding: 0 24px;
}

.review-quote::before {
  content: '"';
  color: var(--dark-gold);
  font-family: var(--font-serif);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -8px;
}

.reviews-divider {
  width: 4px;
  height: 4px;
  background: var(--dark-gold);
  border-radius: 50%;
  margin: 8px auto;
}

/* ========================================
   LOCATION SECTION
   ======================================== */

.location-section {
  background: var(--primary-black);
  padding: var(--section-padding) 0;
}

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

.location-map {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  filter: grayscale(30%);
}

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

.location-content {
  color: var(--warm-cream);
}

.location-title {
  color: var(--warm-cream);
  margin-bottom: 24px;
}

.location-address {
  font-size: 17px;
  color: var(--warm-cream);
  margin-bottom: 8px;
}

.location-detail {
  font-size: 15px;
  color: var(--warm-taupe);
  margin-bottom: 24px;
}

.location-phone {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  color: var(--warm-cream);
  margin-bottom: 24px;
}

.location-hours {
  margin-bottom: 32px;
}

.location-hours li {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.location-hours li span:first-child {
  color: var(--warm-taupe);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--footer-dark);
  padding: 80px 0 40px;
  position: relative;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q25 0 50 10 T100 10' fill='none' stroke='%23B8860B' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--muted-red);
}

.footer-tagline {
  font-size: 14px;
  color: var(--warm-taupe);
  max-width: 240px;
}

.footer-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-cream);
  margin-bottom: 20px;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--warm-cream);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dark-gold);
}

.footer-contact li,
.footer-hours li {
  font-size: 15px;
  color: var(--warm-taupe);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--dark-gold);
  width: 16px;
  margin-top: 4px;
}

.footer-contact a {
  color: var(--warm-cream);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--dark-gold);
}

.footer-hours li {
  justify-content: space-between;
}

.footer-hours span:first-child {
  color: var(--warm-taupe);
}

.footer-hours span:last-child {
  color: var(--warm-cream);
}

.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-divider {
  height: 1px;
  background: var(--dark-gold);
  opacity: 0.3;
  margin-bottom: 24px;
}

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

.footer-copyright {
  font-size: 13px;
  color: var(--warm-taupe);
}

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

.footer-social a {
  color: var(--warm-taupe);
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--dark-gold);
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */

.page-hero {
  min-height: 50vh;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.15) 100%),
    url('https://images.unsplash.com/photo-1611143669185-af224c5e3252?w=1920&q=80') center/cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
}

.page-hero-title {
  font-size: 56px;
  color: var(--warm-cream);
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--warm-taupe);
  max-width: 500px;
  margin: 16px auto 0;
}

/* ========================================
   MENU PAGE
   ======================================== */

.menu-page {
  background: var(--warm-cream);
  min-height: 100vh;
}

.menu-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 40px 24px 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.menu-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.menu-sidebar-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 16px 0;
}

.menu-category-link {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--warm-taupe);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.menu-category-link:hover,
.menu-category-link.active {
  color: var(--primary-black);
  border-left-color: var(--dark-gold);
  background: rgba(184, 134, 11, 0.05);
}

.menu-category {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.menu-category-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--primary-black);
  white-space: nowrap;
}

.menu-category-line {
  flex: 1;
  height: 1px;
  max-width: 60px;
  background: var(--dark-gold);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-item-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.menu-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--primary-black);
}

.menu-item-price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--muted-red);
  white-space: nowrap;
}

.menu-item-description {
  font-size: 14px;
  color: var(--warm-taupe);
  line-height: 1.6;
}

/* Mobile Menu Tabs */
.menu-tabs {
  display: none;
  position: sticky;
  top: 60px;
  background: var(--warm-cream);
  padding: 16px 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-tabs-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.menu-tab {
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--warm-taupe);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.menu-tab.active {
  color: var(--primary-black);
  border-bottom-color: var(--dark-gold);
}

/* ========================================
   ORDER PAGE
   ======================================== */

.order-section {
  background: var(--warm-cream);
  padding: 60px 0 100px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.order-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.order-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--dark-gold);
}

.order-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.order-card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--primary-black);
  margin-bottom: 12px;
}

.order-card-text {
  font-size: 16px;
  color: var(--warm-taupe);
  margin-bottom: 24px;
}

.order-banner {
  max-width: 600px;
  margin: 60px auto 0;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-black) 0%, #2A1510 100%);
  border-radius: 16px;
  color: var(--warm-cream);
}

.order-banner-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}

.order-banner-text {
  font-size: 16px;
  color: var(--warm-taupe);
}

.order-phone {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: var(--warm-taupe);
}

.order-phone a {
  color: var(--muted-red);
  font-weight: 500;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-section {
  background: var(--warm-cream);
  padding: var(--section-padding) 0;
}

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

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--warm-taupe);
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
}

.gallery-section {
  padding: 60px 0 100px;
  background: var(--warm-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/3;
}

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

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

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  background: var(--warm-cream);
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrapper {
  max-width: 500px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-black);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  background: var(--warm-cream);
  border: 1px solid rgba(140, 130, 121, 0.3);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--primary-black);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark-gold);
}

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: flex;
  }
  
  .navbar-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  
  .welcome-image {
    border-radius: 16px 16px 0 0;
    height: 300px;
    order: -1;
  }
  
  .welcome-content {
    padding-left: 0;
  }
  
  .dishes-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .location-map {
    order: -1;
    height: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .page-hero-title {
    font-size: 36px;
  }
  
  /* Menu page mobile */
  .menu-container {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  
  .menu-sidebar {
    display: none;
  }
  
  .menu-tabs {
    display: block;
  }
  
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  
  /* Order page mobile */
  .order-grid {
    grid-template-columns: 1fr;
  }
  
  /* About page mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact page mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .offer-title {
    font-size: 28px;
  }
  
  .reviews-score {
    font-size: 56px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility classes */
.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;
}
