:root {
  --burgundy: #7c1d2e;
  --burgundy-dark: #5a1420;
  --burgundy-light: #a83242;
  --burgundy-glow: rgba(124, 29, 46, 0.08);
  --ivory: #faf0e6;
  --ivory-dark: #f5e6d3;
  --ivory-light: #fff8f2;
  --gold: #c9a96e;
  --gold-dark: #b8944a;
  --gold-light: rgba(201, 169, 110, 0.15);
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --gray-100: #f5f0eb;
  --gray-200: #e8e0d8;
  --gray-300: #ccc4ba;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-dark));
  --shadow: 0 4px 24px rgba(124, 29, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(124, 29, 46, 0.12);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--ivory-light);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 15% 20%, var(--burgundy-glow) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; width: 100%;
  background: rgba(124, 29, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ivory);
  line-height: 1.2;
  letter-spacing: 1px;
}

.logo-text .tagline {
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--burgundy-dark) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700 !important;
}

.nav-cta:hover { 
  opacity: .9;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, var(--gold-light) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ivory);
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

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

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

/* Section styles */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.section-header h2 .highlight {
  color: var(--burgundy);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

/* Restaurant info bar */
.info-bar {
  background: var(--burgundy-dark);
  padding: 16px 24px;
  text-align: center;
  color: var(--ivory);
}

.info-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.info-bar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
}

.info-bar a:hover { text-decoration: underline; }

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
}

.info-bar-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
}

/* About / Intro section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%;
  display: block;
}

.intro-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.intro-content h2 .highlight {
  color: var(--burgundy);
}

.intro-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90, 20, 32, 0.85), transparent);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item .overlay span {
  color: var(--ivory);
  font-size: .85rem;
  font-weight: 500;
}

/* Menu section */
.menu-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  transition: all .3s;
  box-shadow: var(--shadow-card);
}

.menu-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.menu-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.menu-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--burgundy);
}

.menu-card p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.6;
}

/* Delivery links */
.delivery-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text);
}

.delivery-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Contact page / section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-info h2 .highlight {
  color: var(--burgundy);
}

.contact-info p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item .label {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-item .value {
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
}

.contact-item .value a {
  color: var(--burgundy);
  text-decoration: none;
}

.contact-item .value a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ivory);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s;
}

.social-link:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Info cards for contact */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--ivory);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all .3s;
}

.info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.info-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--burgundy);
  margin-bottom: 8px;
}

.info-card h4 {
  font-size: .9rem;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.info-card p {
  font-size: .82rem;
  color: var(--text-light);
  margin: 0;
}

/* CTA section */
.cta {
  padding: 100px 24px;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

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

.cta h2 {
  color: var(--ivory);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta .btn {
  background: var(--gold);
  color: var(--burgundy-dark);
  font-size: 1.1rem;
  padding: 16px 40px;
}

.cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

/* Footer */
footer {
  background: var(--burgundy-dark);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand .footer-logo img {
  height: 40px;
  border-radius: 4px;
}

.footer-brand .footer-logo span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ivory);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: .9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: .88rem;
  padding: 4px 0;
  transition: color .2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,0.4);
}

/* Page header for subpages */
.page-header {
  padding: 140px 24px 60px;
  text-align: center;
  background: var(--burgundy);
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ivory);
}

.page-header h1 .highlight {
  color: var(--gold);
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.4rem; }
  .intro-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .menu-highlights,
  .gallery-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .info-bar-inner { gap: 16px; flex-direction: column; }
  
  .nav-links {
    position: fixed;
    top: 76px; left: 0;
    width: 100%;
    background: var(--burgundy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    display: none;
  }
  
  .nav-links.open { display: flex; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .delivery-links { flex-direction: column; align-items: stretch; }
  .delivery-btn { justify-content: center; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { width: 100%; justify-content: center; }
}
