/* ============================================
   Ruanthip Bistro — Design System & Styles
   Color Scheme: Rustic & Traditional
   60% Cream/Off-White · 30% Deep Burgundy/Olive · 10% Warm Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Sarabun:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- CSS Variables --- */
:root {
  /* 60% Base */
  --cream: #FDF8F0;
  --off-white: #FAF5EB;
  --warm-white: #F7F2E8;
  --parchment: #EDE5D8;

  /* 30% Secondary */
  --burgundy: #6B1D2A;
  --burgundy-dark: #4A1420;
  --burgundy-light: #8B3040;
  --olive: #4A5D3A;
  --olive-dark: #3A4A2D;
  --olive-light: #6B7D5A;
  --warm-brown: #6B4E37;
  --warm-brown-light: #8B6E57;

  /* 10% Accent */
  --gold: #C4943D;
  --gold-light: #D4A94D;
  --gold-dark: #A47A2D;
  --copper: #B87333;

  /* Neutrals */
  --charcoal: #2C2C2C;
  --dark-text: #3A3A3A;
  --medium-text: #5A5A5A;
  --light-text: #8A8A8A;
  --border-light: #E0D8CC;
  --shadow-color: rgba(107, 29, 42, 0.08);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Sarabun', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;
  --container-narrow: 900px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  margin: 1rem auto;
  border: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px var(--shadow-color);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 1px;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 0.25rem 0;
}

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

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

/* Remove underline from language switcher links */
.lang-switch a::after {
  display: none !important;
}

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

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 0.2rem;
  font-size: 0.8rem;
}

.lang-switch a,
.lang-switch button {
  padding: 0.3rem 0.7rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--medium-text);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.lang-switch a.active,
.lang-switch button.active {
  background: var(--burgundy);
  color: white;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* --- Hero Section (Chic Split Layout) --- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 70px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--cream);
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 148, 61, 0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-light);
}

.hero-title {
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--medium-text);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--medium-text);
}

.hero-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

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

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
}

.hero-rating .stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-medium);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 29, 42, 0.3);
}

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

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

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

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* --- Section --- */
.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--burgundy-dark);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

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

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

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

.dish-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition-medium);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107, 29, 42, 0.15);
}

.dish-card-image {
  position: relative;
  height: 240px;
  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.08);
}

.dish-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--burgundy);
  color: var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dish-card-content {
  padding: 1.25rem;
}

.dish-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.dish-card-desc {
  font-size: 0.85rem;
  color: var(--medium-text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.dish-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* --- About/Story Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

.about-image-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--medium-text);
  line-height: 1.8;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--dark-text);
  font-weight: 500;
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  position: relative;
  transition: all var(--transition-medium);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(107, 29, 42, 0.12);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

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

.review-text {
  font-size: 0.95rem;
  color: var(--medium-text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-author-info {
  font-size: 0.85rem;
}

.review-author-name {
  font-weight: 600;
  color: var(--dark-text);
}

.review-author-source {
  color: var(--light-text);
  font-size: 0.75rem;
}

/* --- Review Sites Badges --- */
.review-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px var(--shadow-color);
  text-decoration: none;
  transition: all var(--transition-medium);
}

.review-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 29, 42, 0.12);
}

.review-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: white;
}

.review-badge-icon.google { background: #4285F4; }
.review-badge-icon.tripadvisor { background: #00AF87; }
.review-badge-icon.wongnai { background: #ED1C24; }

.review-badge-info {
  text-align: left;
}

.review-badge-rating {
  font-weight: 700;
  color: var(--dark-text);
  font-size: 1rem;
}

.review-badge-source {
  font-size: 0.7rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Location Section --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-color);
  aspect-ratio: 4/3;
}

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

.location-info {
  padding: 1rem 0;
}

.location-info h3 {
  margin-bottom: 1.5rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location-detail-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.location-detail-icon svg {
  width: 20px;
  height: 20px;
}

.location-detail-text h4 {
  font-size: 0.9rem;
  color: var(--dark-text);
  margin-bottom: 0.2rem;
}

.location-detail-text p,
.location-detail-text a {
  font-size: 0.9rem;
  color: var(--medium-text);
}

/* --- Footer --- */
.footer {
  background: var(--burgundy-dark);
  color: var(--parchment);
  padding: 4rem 0 1.5rem;
}

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

.footer-brand .nav-logo-text {
  color: var(--cream);
  font-size: 1.3rem;
}

.footer-brand .nav-logo-text span {
  color: var(--gold-light);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--parchment);
  opacity: 0.7;
  line-height: 1.7;
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

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

.footer-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all var(--transition-fast);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--parchment);
  opacity: 0.5;
}

/* --- Menu Page --- */
.page-header {
  padding: calc(70px + 3rem) 0 3rem;
  background: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C4943D' fill-opacity='0.04'%3E%3Cpath d='M20 20c0 5.5-4.5 10-10 10S0 25.5 0 20 4.5 10 10 10s10 4.5 10 10zm10 0c0 5.5-4.5 10-10 10s-10-4.5-10-10 4.5-10 10-10 10 4.5 10 10z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.menu-category-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--border-light);
  border-radius: 30px;
  background: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--medium-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-category-btn:hover,
.menu-category-btn.active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: white;
}

.menu-section {
  margin-bottom: 3rem;
}

.menu-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
}

.menu-section-title h3 {
  white-space: nowrap;
}

.menu-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  gap: 1rem;
}

.menu-item:hover {
  box-shadow: 0 4px 15px var(--shadow-color);
  transform: translateY(-1px);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--burgundy);
  margin-bottom: 0.2rem;
}

.menu-item-name-th {
  font-size: 0.85rem;
  color: var(--olive);
  margin-bottom: 0.2rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--light-text);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* --- About Page --- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
  padding-top: 70px;
}

.about-hero-image {
  overflow: hidden;
}

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

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--off-white);
}

.about-story {
  padding: var(--section-padding) 0;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  cursor: pointer;
}

.about-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px var(--shadow-color);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 50vh;
    order: -1;
  }

  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-hero-image {
    height: 40vh;
  }

  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-image {
    height: 40vh;
  }

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

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

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

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

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    text-align: center;
    justify-content: center;
  }

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

  .review-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Decorative elements --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.ornament svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* --- Loading/Skeleton --- */
.skeleton {
  background: linear-gradient(90deg, var(--warm-white) 25%, var(--parchment) 50%, var(--warm-white) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

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

/* --- Image Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

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