/* ===========================================
   SITESPARK PRO — Restaurant Template
   Primary: Burgundy #7f1d1d | Accent: Gold #d97706
   =========================================== */

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

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

:root {
  --burgundy:      #7f1d1d;
  --burgundy-mid:  #991b1b;
  --burgundy-dark: #450a0a;
  --gold:          #d97706;
  --gold-light:    #fbbf24;
  --gold-pale:     #fef3c7;
  --cream:         #fffbf0;
  --cream-mid:     #fef9e7;
  --warm-white:    #fefefe;
  --text-primary:  #1c1917;
  --text-secondary:#57534e;
  --text-light:    #a8a29e;
  --white:         #ffffff;
  --border:        rgba(0,0,0,0.07);
  --border-warm:   rgba(127,29,29,0.12);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-gold:   0 6px 24px rgba(217,119,6,0.28);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    180ms cubic-bezier(0.16, 1, 0.3, 1);
  --font-body:     'Inter', system-ui, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--text-primary); background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-alt { background: var(--warm-white); }
.section-dark { background: var(--burgundy-dark); color: var(--white); }
.section-cream { background: var(--cream-mid); }
.text-center { text-align: center; }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: ''; height: 1px; width: 28px; background: var(--gold); opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700; color: var(--burgundy); line-height: 1.15; margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-label { color: var(--gold-light); }

.section-sub {
  font-size: 17px; color: var(--text-secondary);
  max-width: 560px; line-height: 1.7;
}
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

/* Decorative divider */
.ornament {
  display: block; text-align: center;
  color: var(--gold); font-size: 20px;
  margin: 16px 0; letter-spacing: 12px;
  opacity: 0.6;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px;
  font-weight: 600; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy); color: var(--white); border-color: var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-mid); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(127,29,29,0.32); }
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover { background: #b45309; transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.10); border-color: var(--white); }
.btn-outline-gold {
  background: transparent; color: var(--gold-light); border-color: rgba(251,191,36,0.45);
}
.btn-outline-gold:hover { background: rgba(251,191,36,0.12); border-color: var(--gold-light); }

/* Announcement Bar */
.announce-bar {
  background: var(--gold);
  color: var(--burgundy-dark);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Header */
.header {
  background: var(--burgundy-dark);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-crest {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(217,119,6,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  color: var(--gold);
}
.logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
.logo-tagline { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; display: none; }
@media (min-width: 480px) { .logo-tagline { display: block; } }

nav { display: none; }
@media (min-width: 960px) { nav { display: flex; align-items: center; gap: 4px; } }
nav a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em; transition: all var(--transition);
}
nav a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
nav a.cta { color: var(--gold-light); font-weight: 600; }
nav a.cta:hover { background: rgba(217,119,6,0.15); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.80);
  display: none; align-items: center; gap: 6px; transition: color var(--transition);
}
@media (min-width: 640px) { .header-phone { display: flex; } }
.header-phone:hover { color: var(--gold-light); }

.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; }

.mobile-nav { display: none; background: var(--burgundy-dark); border-top: 1px solid rgba(255,255,255,0.07); padding: 16px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 20px; font-size: 15px; color: rgba(255,255,255,0.70); border-radius: var(--radius-sm); margin: 0 8px; transition: all var(--transition); }
.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: var(--white); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--burgundy-dark) 0%, var(--burgundy) 55%, #9b2c2c 100%);
  color: var(--white);
  padding: 96px 0 112px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(217,119,6,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-top { font-size: 13px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 700; line-height: 1.1; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 3vw, 22px); color: rgba(255,255,255,0.68);
  margin-bottom: 36px; line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.hero-info {
  margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 36px; justify-content: center;
}
.hero-info-item { text-align: center; }
.hero-info-item .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.50); margin-bottom: 4px; }
.hero-info-item .value { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--white); }

/* Hours Banner */
.hours-banner {
  background: var(--gold-pale); border-top: 1px solid rgba(217,119,6,0.2);
  border-bottom: 1px solid rgba(217,119,6,0.2);
  padding: 18px 0;
}
.hours-banner .container { display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: center; justify-content: center; font-size: 14px; }
.hours-item { display: flex; align-items: center; gap: 6px; color: var(--text-secondary); }
.hours-item strong { color: var(--burgundy); }

/* Menu Section */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}

.menu-category {
  background: var(--warm-white); border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.menu-category:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.menu-category-header {
  background: var(--burgundy); padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.menu-category-header .cat-icon { font-size: 24px; }
.menu-category-header h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--white); }
.menu-category-header span { font-size: 12px; color: rgba(255,255,255,0.60); letter-spacing: 0.08em; text-transform: uppercase; }

.menu-items { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.menu-item-info {}
.menu-item-name { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.menu-item-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.45; }
.menu-item-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--gold); white-space: nowrap; flex-shrink: 0; }

.menu-divider { height: 1px; background: var(--border); }

.view-full-menu {
  padding: 16px 24px; display: block; text-align: center;
  font-size: 14px; font-weight: 600; color: var(--burgundy);
  border-top: 1px solid var(--border-warm);
  transition: all var(--transition);
}
.view-full-menu:hover { background: var(--gold-pale); color: var(--gold); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; margin-top: 48px; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-visual {
  background: linear-gradient(170deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  border-radius: var(--radius-lg); padding: 52px 40px; color: var(--white);
  text-align: center; position: relative;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 10px; border: 1px solid rgba(217,119,6,0.25);
  border-radius: calc(var(--radius-lg) - 4px); pointer-events: none;
}
.about-crest { font-size: 56px; margin-bottom: 20px; }
.about-visual h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.about-visual p { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.65; margin-bottom: 28px; }
.about-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--gold-light); display: block; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.about-content p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; font-size: 16px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; background: var(--gold-pale);
  border: 1px solid rgba(217,119,6,0.2); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; color: var(--burgundy);
}

/* Reserve Section */
.reserve-section {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  padding: 72px 0; text-align: center; color: var(--white);
}
.reserve-section h2 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px); margin-bottom: 16px; }
.reserve-section p { color: rgba(255,255,255,0.70); font-size: 17px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.reserve-options { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 48px; }
.review-card {
  background: var(--warm-white); border: 1px solid var(--border-warm);
  border-radius: var(--radius-md); padding: 28px;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px; flex-shrink: 0;
  font-family: var(--font-display);
}
.author-info strong { font-size: 14px; font-weight: 600; display: block; }
.author-info span { font-size: 12px; color: var(--text-light); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-form {
  background: var(--warm-white); border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px;
  color: var(--text-primary); background: var(--cream);
  transition: all var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--burgundy); background: var(--white);
  box-shadow: 0 0 0 3px rgba(127,29,29,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--warm-white); border: 1px solid var(--border-warm);
  border-radius: var(--radius-md); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start; transition: all var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-sm); }
.info-icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.info-content strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; }
.info-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.info-content a { color: var(--burgundy); font-weight: 600; transition: color var(--transition); }
.info-content a:hover { color: var(--gold); }
.hours-table { width: 100%; font-size: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; }
.hours-time { color: var(--text-secondary); }
.hours-time.open { color: var(--burgundy); font-weight: 600; }
.hours-time.closed { color: var(--text-light); }
.map-embed { width: 100%; height: 200px; border-radius: var(--radius-md); border: 0; }

/* Footer */
.footer { background: var(--burgundy-dark); color: rgba(255,255,255,0.68); padding: 60px 0 0; }
.footer-ornament { text-align: center; color: var(--gold); font-size: 22px; letter-spacing: 10px; opacity: 0.4; margin-bottom: 48px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo-text { color: var(--white); font-family: var(--font-display); }
.footer-brand p { font-size: 14px; line-height: 1.65; margin-top: 12px; max-width: 280px; }
.footer h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; align-items: flex-start; }
.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.50); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }
.powered-by a { color: var(--gold-light); font-weight: 600; }

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 80px; }
}


/* === PRO UPGRADE: Lucide Icons === */
.lucide-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%);
}
.lucide-icon-lg { width: 32px; height: 32px; }
.lucide-icon-xl { width: 40px; height: 40px; }
.lucide-icon-white { filter: brightness(0) invert(1); }
.lucide-icon-accent { filter: none; }

.service-icon .lucide-icon,
.service-icon-wrap .lucide-icon,
.info-icon .lucide-icon {
  width: 28px;
  height: 28px;
}

.logo-icon .lucide-icon {
  width: 28px;
  height: 28px;
  filter: none;
}

.trust-item .lucide-icon {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 4px;
}

.badge .lucide-icon {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  margin-right: 4px;
}

.footer-contact-item .icon .lucide-icon {
  width: 16px;
  height: 16px;
}

/* === PRO UPGRADE: Hero Background Image === */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}

/* === PRO UPGRADE: CSS Scroll Reveal Animations === */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Progressive enhancement: only apply if browser supports scroll-driven animations */
@supports (animation-timeline: view()) {
  .service-card,
  .review-card,
  .info-card,
  .process-step,
  .menu-category,
  .stat-item {
    opacity: 0;
    animation: reveal-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  .service-card:nth-child(2),
  .review-card:nth-child(2),
  .process-step:nth-child(2) { animation-delay: 0.08s; }
  .service-card:nth-child(3),
  .review-card:nth-child(3),
  .process-step:nth-child(3) { animation-delay: 0.16s; }
  .service-card:nth-child(4),
  .process-step:nth-child(4) { animation-delay: 0.24s; }
  .service-card:nth-child(5) { animation-delay: 0.32s; }
  .service-card:nth-child(6) { animation-delay: 0.40s; }

  .about-visual,
  .about-content {
    opacity: 0;
    animation: reveal-scale 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  .section-title,
  .section-label {
    opacity: 0;
    animation: reveal-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

/* Fallback for browsers without scroll-timeline: JS handles it */
