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

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #181818;
  --gold: #c9a96e;
  --gold-light: #e8c99a;
  --gold-dim: #8a6d42;
  --text: #f0ece4;
  --text-muted: #8a8070;
  --border: #242424;
  --radius: 4px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Utility ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Navbar ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 10px 24px;
  background: var(--gold) !important;
  color: #0a0a0a !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-phone {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-phone a { color: inherit; transition: color var(--transition); }
.nav-phone a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(240, 236, 228, 0.8);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.hero-address {
  font-size: 13px;
  color: rgba(240, 236, 228, 0.6);
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: rgba(240,236,228,0.5);
  animation: bounce 2s infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(240,236,228,0.8);
  margin-bottom: 24px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
  z-index: -1;
}

/* ── Menu ────────────────────────────────────── */
.menu-section { background: var(--bg-card); }
.menu-header { text-align: center; margin-bottom: 60px; }
.menu-header .divider { margin: 0 auto 40px; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.menu-tab {
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.menu-tab:hover, .menu-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}
.menu-category { display: none; }
.menu-category.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.menu-item {
  background: var(--bg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background var(--transition);
}
.menu-item:hover { background: var(--bg-elevated); }
.menu-item-body { flex: 1; }
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-item-price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  font-style: italic;
}
.menu-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Gallery ─────────────────────────────────── */
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-header .divider { margin: 0 auto 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.3); }
.gallery-zoom {
  color: white;
  font-size: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── Contact & Hours ─────────────────────────── */
.contact-section { background: var(--bg-card); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value { font-size: 16px; }
.contact-value a:hover { color: var(--gold); }

.hours-table { width: 100%; margin-top: 32px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { text-transform: capitalize; }
.hours-row.today .hours-day { color: var(--gold); font-weight: 500; }
.hours-row.today .hours-time { color: var(--gold); }
.hours-closed { color: var(--text-muted); font-style: italic; }
.hours-badge {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(201,169,110,0.12);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
}

.map-wrapper {
  height: 420px;
  overflow: hidden;
  filter: grayscale(0.7) contrast(1.1);
  transition: filter var(--transition);
}
.map-wrapper:hover { filter: grayscale(0) contrast(1); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── Reservation ─────────────────────────────── */
.reservation-section { background: var(--bg); }
.reservation-header { text-align: center; margin-bottom: 60px; }
.reservation-header .divider { margin: 0 auto 40px; }
.reservation-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 56px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8070' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-submit { width: 100%; margin-top: 12px; font-size: 13px; padding: 18px; }
.form-message {
  display: none;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 14px;
  border-radius: var(--radius);
  text-align: center;
}
.form-message.success { background: rgba(74,180,74,0.1); border: 1px solid rgba(74,180,74,0.3); color: #6dcc6d; }
.form-message.error { background: rgba(220,60,60,0.1); border: 1px solid rgba(220,60,60,0.3); color: #e07070; }

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; font-size: 14px; color: var(--text-muted); }
.footer-list a { color: var(--text-muted); transition: color var(--transition); }
.footer-list a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Animate on scroll ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-image img { height: 400px; }
  .about-image::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
  }
  .hero-title { font-size: 3.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .reservation-form { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; }
}
