:root {
  --primary: #8B0000;
  --primary-light: #A52A2A;
  --accent: #D4A017;
  --accent-light: #F0C75E;
  --dark: #1a1a1a;
  --dark-mid: #2d2d2d;
  --cream: #FFF8F0;
  --warm-white: #FFFDF9;
  --text: #333;
  --text-light: #666;
  --border: #e8e0d8;
  --shadow: rgba(0,0,0,0.08);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-pad: 5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ── */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.75rem 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.logo-text {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}
.main-nav a {
  display: block;
  padding: 1.25rem 1.25rem;
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 2rem;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 0.4rem 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,0,0,0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── Sections ── */
section {
  padding: var(--section-pad) 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .overline {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Menu Section ── */
.bg-cream { background: var(--cream); }

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.menu-item {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px var(--shadow);
  transition: transform 0.3s;
}
.menu-item:hover { transform: translateY(-3px); }
.menu-item-img {
  width: 140px;
  min-height: 140px;
  flex-shrink: 0;
  object-fit: cover;
}
.menu-item-info {
  padding: 1.25rem 1.25rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-item-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.menu-item-info .desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.menu-item-info .price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

/* ── Full Menu Page ── */
.menu-category {
  margin-bottom: 3.5rem;
}
.menu-category h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.menu-category > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px dotted var(--border);
}
.menu-list-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.menu-list-item .desc {
  font-size: 0.85rem;
  color: var(--text-light);
}
.menu-list-item .price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 1rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stat {
  text-align: center;
}
.stat .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
}
.stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139,0,0,0.0);
  transition: background 0.3s;
}
.gallery-item:hover::after {
  background: rgba(139,0,0,0.15);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  font-size: 0.95rem;
}
.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}
.stars {
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-card {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.contact-info-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form textarea { height: 150px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Hours Table ── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text-light);
}
.hours-table tr.today td {
  color: var(--primary);
  font-weight: 600;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--primary);
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.2), transparent);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--cream);
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  font-size: 1.05rem;
  position: relative;
}
.breadcrumb {
  position: relative;
  margin-top: 1rem;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── Map ── */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.map-placeholder {
  text-align: center;
  color: var(--text-light);
}
.map-placeholder .icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 968px) {
  .features-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    transition: right 0.3s;
    z-index: 200;
    padding-top: 5rem;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; }
  .main-nav a { padding: 1rem 2rem; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 199;
    display: none;
  }
  .nav-overlay.open { display: block; }

  .hero { height: 70vh; }
  .hero h1 { font-size: 2.2rem; }
  .features-grid,
  .menu-preview-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; }
  .menu-item-img { width: 100%; min-height: 180px; }
  .menu-item-info { padding: 1.25rem; }
  .about-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1rem; }
}
