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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #1a1008;
  color: #f5ead8;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(26, 16, 8, 0.92);
  border-bottom: 0.5px solid rgba(210, 160, 80, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9963a;
  letter-spacing: 0.02em;
}

.logo span {
  color: #f5ead8;
  font-weight: 400;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  transition: all 0.3s ease;
}

nav ul a {
  color: #c4b49a;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav ul a:hover {
  color: #c9963a;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: #f5ead8;
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(180, 100, 20, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(100, 60, 10, 0.15) 0%, transparent 50%),
    #1a1008;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9963a' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9963a;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: #c9963a;
  opacity: 0.6;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #f5ead8;
  margin-bottom: 0.3rem;
}

.hero h1 em {
  font-style: italic;
  color: #c9963a;
}

.hero-sub {
  font-size: 1rem;
  color: #9a8a72;
  margin: 1.4rem 0 2.4rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c9963a;
  color: #1a1008;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #e0aa48;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #c4b49a;
  border: 0.5px solid rgba(196, 180, 154, 0.4);
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: #c9963a;
  color: #c9963a;
  transform: translateY(-2px);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 2rem;
  border-top: 0.5px solid rgba(201, 150, 58, 0.15);
  border-bottom: 0.5px solid rgba(201, 150, 58, 0.15);
  background: rgba(201, 150, 58, 0.04);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #c9963a;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a6a54;
  margin-top: 0.2rem;
}

.section {
  padding: 5rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-section-header {
  padding-bottom: 0;
}

.menu-container {
  padding: 0 3rem 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9963a;
  margin-bottom: 0.8rem;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: #f5ead8;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section p {
  color: #9a8a72;
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(201, 150, 58, 0.15);
  margin-top: 3rem;
  border: 0.5px solid rgba(201, 150, 58, 0.15);
}

.menu-item {
  background: #1a1008;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: rgba(201, 150, 58, 0.08);
  transform: translateY(-4px);
}

.menu-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9963a;
  margin-bottom: 0.6rem;
}

.menu-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #f5ead8;
  margin-bottom: 0.4rem;
}

.menu-desc {
  font-size: 0.82rem;
  color: #7a6a54;
  line-height: 1.6;
}

.menu-price {
  font-size: 0.85rem;
  color: #c9963a;
  margin-top: 0.8rem;
  font-weight: 500;
}

.about-section {
  background: rgba(201, 150, 58, 0.04);
  border-top: 0.5px solid rgba(201, 150, 58, 0.1);
  border-bottom: 0.5px solid rgba(201, 150, 58, 0.1);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #f5ead8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-text p {
  color: #9a8a72;
  line-height: 1.8;
  font-weight: 300;
}

.about-text p:first-of-type {
  margin-bottom: 1rem;
}

.about-visual {
  aspect-ratio: 4/5;
  border: 0.5px solid rgba(201, 150, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(20%) sepia(30%);
  transition: all 0.5s ease;
}

.about-visual:hover .about-img {
  transform: scale(1.05);
  opacity: 0.9;
}

.about-year {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: rgba(251, 240, 220, 0.9);
  font-weight: 700;
  line-height: 1;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  pointer-events: none;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hour-card {
  border: 0.5px solid rgba(201, 150, 58, 0.2);
  padding: 1.3rem;
  background: rgba(201, 150, 58, 0.03);
  transition: all 0.3s ease;
}

.hour-card:hover {
  background: rgba(201, 150, 58, 0.08);
}

.hour-day {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a6a54;
}

.hour-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #c9963a;
  margin-top: 0.3rem;
}

.contact-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 0.5px solid rgba(201, 150, 58, 0.2);
  background: rgba(201, 150, 58, 0.04);
}

.contact-line {
  font-size: 0.8rem;
  color: #7a6a54;
}

.contact-line-margin {
  font-size: 0.8rem;
  color: #7a6a54;
  margin-top: 0.4rem;
}

.contact-box a {
  color: #c9963a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-box a:hover {
  color: #e0aa48;
}

.social-links {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(201, 150, 58, 0.15);
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9a8a72;
}

footer {
  padding: 2.5rem 3rem;
  border-top: 0.5px solid rgba(201, 150, 58, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
}

footer .logo {
  font-size: 1rem;
}

footer p {
  font-size: 0.78rem;
  color: #5a4a34;
}

.footer-credit {
  font-size: 0.75rem;
  color: #3a2a1a;
}

/* --- JS ANIMATION STYLES --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInKey 1s ease forwards;
}

@keyframes fadeInKey {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVITY --- */
@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  nav ul {
    position: fixed;
    top: 65px;
    left: -100%;
    flex-direction: column;
    background: #1a1008;
    width: 100%;
    height: calc(100vh - 65px);
    text-align: center;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 0.5px solid rgba(210, 160, 80, 0.2);
  }

  nav ul.active {
    left: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .stats {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .menu-container {
    padding: 0 1.5rem 3rem;
  }
}