/* Custom styles complementing Tailwind */

/* Eyebrow label */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a82e2e;
  margin-bottom: 0.75rem;
}

/* Section headline */
.section-headline {
  color: #300c0c;
}

/* Navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 46, 46, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(48, 12, 12, 0.08);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #300c0c;
}
.nav-brand-icon {
  color: #a82e2e;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Hero */
.hero-text-col {
  background: #FDF8F4;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a82e2e;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: #300c0c;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: #5c1818;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-img-wrap {
  border-radius: 8px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.about-text .section-headline {
  margin-bottom: 1.5rem;
}
.about-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #731e1e;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.menu-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a82e2e;
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 6 / 9; grid-row: 2 / 3; }

/* Visit */
.visit-section {
  background: #8c2424;
  padding: 6rem 6%;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.visit-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9d0d0;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #731e1e;
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
}

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(48, 12, 12, 0.4);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #FDF8F4;
  z-index: 101;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: -8px 0 30px rgba(48, 12, 12, 0.15);
}
.mobile-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #300c0c;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(168, 46, 46, 0.1);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:hover {
  color: #a82e2e;
  padding-left: 0.5rem;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Footer */
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { order: -1; }
  .visit-map { order: -1; }
  .menu-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item img { height: 260px; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) { grid-column: auto; }
  .gallery-item img { height: 240px; }
}
