:root {
  --primary: #8B4513;
  --primary-light: #A0522D;
  --secondary: #2C1810;
  --accent: #D4A574;
  --accent-light: #E8D5C0;
  --gold: #C9A96E;
  --olive: #6B7B3A;
  --cream: #FDF8F0;
  --bg: #FFFAF5;
  --bg-dark: #1A0F0A;
  --text: #3D2B1F;
  --text-light: #6B5B4F;
  --border: #E8DDD4;
  --font-heading: 'Georgia', 'Palatino Linotype', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

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

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

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 15, 10, 0.95);
  backdrop-filter: blur(12px);
  height: var(--header-height);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-logo img { width: 45px; height: 45px; border-radius: 50%; }
.site-logo span { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: rgba(253, 248, 240, 0.8);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

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

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-cta:hover { background: var(--primary-light) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  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;
  max-width: 700px;
  padding: 0 24px;
}

.hero-label {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero p {
  color: rgba(253, 248, 240, 0.8);
  font-size: 1.15rem;
  margin-bottom: 35px;
  line-height: 1.8;
}

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

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--cream);
}

.btn-primary:hover { background: var(--primary-light); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253, 248, 240, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg-dark);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--cream);
  font-weight: 400;
}

.page-hero p {
  color: rgba(253, 248, 240, 0.7);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ========== SECTION STYLES ========== */
section { padding: 80px 0; }

.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 400;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto 40px; }

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
  background: #fff;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========== MENU GRID ========== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.menu-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}

.menu-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.06);
}

.menu-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.menu-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.menu-price {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ========== MENU CATEGORY ========== */
.menu-category {
  margin-bottom: 50px;
}

.menu-category h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-light);
}

.menu-category-desc {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted var(--border);
}

.menu-item-name {
  font-weight: 600;
  color: var(--secondary);
}

.menu-item-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 3px;
}

.menu-item-price {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 20px;
}

/* ========== TWO COL ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.two-col-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.two-col-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(253, 248, 240, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; fill: var(--primary); }

.contact-info-card h4 {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-card a { color: var(--secondary); }

.contact-form {
  background: #fff;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: var(--bg);
}

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

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

.btn-submit {
  background: var(--primary);
  color: var(--cream);
  padding: 14px 40px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover { background: var(--primary-light); }

.map-container {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ========== EVENTS/PRIVATE DINING ========== */
.events-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  margin: 16px 0 8px;
}

.event-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(253, 248, 240, 0.7);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-col a {
  display: block;
  color: rgba(253, 248, 240, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(253, 248, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.footer-social svg { width: 16px; height: 16px; fill: rgba(253, 248, 240, 0.7); }

/* ========== HOURS TABLE ========== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.hours-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-table td:first-child { font-weight: 600; color: var(--secondary); }
.hours-table td:last-child { text-align: right; color: var(--text-light); }

/* ========== WINE LIST ========== */
.wine-section { margin-bottom: 40px; }

.wine-section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent-light);
}

.wine-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted var(--border);
}

.wine-name { font-weight: 600; color: var(--secondary); }
.wine-region { font-size: 0.85rem; color: var(--text-light); font-style: italic; }
.wine-prices { text-align: right; color: var(--primary); font-weight: 600; }

/* ========== RESPONSIVE ========== */
@media (max-width: 920px) {
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(26, 15, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

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

  .main-nav a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(253, 248, 240, 0.05);
    width: 100%;
  }

  .main-nav a.active::after { display: none; }

  .mobile-toggle { display: block; }

  .hero h1 { font-size: 2.4rem; }

  .features-grid,
  .menu-grid,
  .testimonials-grid,
  .events-features { grid-template-columns: 1fr; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .form-row { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .cta-banner h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .menu-card { flex-direction: column; }
  .menu-card img { width: 100%; height: 180px; }
}
