﻿:root {
  --burgundy: #722f37;
  --burgundy-dark: #5a252c;
  --burgundy-light: #8f3d47;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-soft: #faf6eb;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --navy: #1c2840;
  --navy-soft: #2a3a52;
  --white: #ffffff;
  --text: #2c2420;
  --text-muted: #6b5e56;
  --border: #e5ddd4;
  --shadow: 0 8px 32px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 36, 32, 0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1100px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }

/* Top bar */
.topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: 13px; padding: 10px 0; }
.topbar-inner { display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.9); transition: color .15s; }
.topbar a:hover { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 14px; font-family: var(--font);
  padding: 12px 24px; border-radius: var(--radius); cursor: pointer;
  border: none; transition: all .25s; letter-spacing: .02em;
}
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,162,39,.35); }
.btn-outline-light { background: transparent; border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.section-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 12px;
}
.section-tag.light { color: var(--gold); }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 0; transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--burgundy); color: var(--gold);
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 16px; font-weight: 700; font-style: italic;
}
.brand-name { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.brand-name span { color: var(--burgundy); font-style: italic; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--burgundy); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-trigger {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: var(--radius);
  border: 2px solid var(--burgundy); background: var(--gold-soft);
  color: var(--burgundy); font-weight: 700; font-size: 14px; cursor: pointer; min-width: 92px;
}
.lang-trigger:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.lang-flag { font-size: 16px; }
.lang-chevron { font-size: 10px; transition: transform .2s; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 180px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s; z-index: 300;
}
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: none; }
.lang-dropdown li {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  cursor: pointer; font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--border);
}
.lang-dropdown li:last-child { border-bottom: none; }
.lang-dropdown li:hover, .lang-dropdown li.active { background: var(--gold-soft); color: var(--burgundy); }
.lang-dropdown li small { margin-left: auto; font-size: 11px; color: var(--text-muted); font-weight: 700; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); }

/* Hero */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 50%, var(--burgundy-dark) 100%);
  color: #fff; padding: 80px 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,162,39,.12), transparent 60%);
}
.hero-inner { position: relative; max-width: 640px; }
.hero-location {
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
}
.hero h1 { font-size: clamp(42px, 7vw, 72px); font-weight: 600; margin-bottom: 24px; line-height: 1.05; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead { font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Info strip */
.info-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 24px 0; }
.info-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.info-icon { font-size: 20px; }

/* Sections */
.section { padding: 88px 0; }
.section-cream { background: var(--cream-dark); }
.section-burgundy { background: var(--burgundy); color: #fff; padding: 64px 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(32px, 5vw, 44px); color: var(--navy); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 16px; }

/* Menu tabs */
.menu-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 36px; }
.menu-tab {
  padding: 12px 32px; font-family: var(--font); font-weight: 600; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  background: transparent; border: 1px solid var(--border); color: var(--text-muted);
  transition: all .2s;
}
.menu-tab:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.menu-tab:last-child { border-radius: 0 var(--radius) var(--radius) 0; border-left: none; }
.menu-tab.active { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.menu-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: relative;
  transition: all .25s;
}
.menu-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.menu-card.highlight { border-left: 3px solid var(--gold); }
.menu-card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.menu-card h3 { font-size: 22px; color: var(--navy); }
.menu-card .price { font-weight: 700; color: var(--burgundy); font-size: 15px; }
.menu-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold-soft); color: var(--burgundy);
  padding: 4px 10px; border-radius: var(--radius);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

/* Split / About */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { font-size: clamp(30px, 4vw, 40px); color: var(--navy); margin-bottom: 20px; }
.split-copy p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  padding-left: 24px; position: relative; margin-bottom: 10px; font-size: 15px;
}
.feature-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.about-visual { position: relative; }
.about-frame {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-placeholder {
  aspect-ratio: 4/3; background: linear-gradient(145deg, var(--navy), var(--burgundy));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center;
}
.about-placeholder span { font-size: 48px; margin-bottom: 12px; }
.about-placeholder p { font-family: var(--font-display); font-size: 24px; font-style: italic; line-height: 1.3; }
.about-stats {
  display: flex; gap: 16px; margin-top: 16px;
}
.about-stats div {
  flex: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
}
.about-stats strong { display: block; font-size: 24px; color: var(--burgundy); font-family: var(--font-display); }
.about-stats span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* Ambiance */
.amb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.amb-card { padding-top: 20px; border-top: 1px solid var(--border); }
.amb-card span { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .1em; display: block; margin-bottom: 12px; }
.amb-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.amb-card p { font-size: 14px; color: var(--text-muted); }
.testimonial {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: 36px; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.testimonial p { font-family: var(--font-display); font-size: 22px; font-style: italic; color: var(--navy); margin-bottom: 16px; line-height: 1.5; }
.testimonial footer { font-size: 14px; color: var(--text-muted); }

/* Hours */
.hours-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hours-copy h2 { font-size: 36px; margin-bottom: 24px; color: #fff; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 15px; }
.hours-list span { color: rgba(255,255,255,.7); }
.hours-list strong { color: var(--gold-light); }
.hours-address { background: rgba(0,0,0,.15); border-radius: var(--radius-lg); padding: 28px; }
.hours-address p { margin-bottom: 8px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.9); }
.hours-phone { display: inline-block; margin-top: 12px; font-size: 18px; font-weight: 700; color: var(--gold-light); }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-copy h2 { font-size: clamp(28px, 4vw, 38px); color: var(--navy); margin-bottom: 14px; }
.contact-copy > p { color: var(--text-muted); margin-bottom: 24px; }
.contact-details p { margin-bottom: 10px; font-size: 15px; }
.contact-details a { color: var(--burgundy); font-weight: 600; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); letter-spacing: .02em; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 15px; font-family: inherit;
  background: var(--cream); transition: border .15s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--burgundy); }
.form-note { margin-top: 14px; text-align: center; color: #2d6a4f; font-weight: 600; font-size: 14px; }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-name { font-family: var(--font-display); font-size: 28px; color: #fff; display: block; margin-bottom: 12px; }
.footer .brand-name span { color: var(--gold); font-style: italic; }
.footer-brand p { font-size: 14px; max-width: 260px; }
.footer-col h4 { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; display: flex; flex-direction: column; gap: 8px; text-align: center; font-size: 12px; color: rgba(255,255,255,.45); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: all .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-gold { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 16px; right: 16px; background: var(--white);
    padding: 20px; border-radius: var(--radius-lg); gap: 14px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .split, .contact-inner, .hours-block { grid-template-columns: 1fr; }
  .menu-grid, .amb-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .info-inner { gap: 20px; }
  .hero { min-height: 70vh; }
}
