/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: #FFFAF5;
  color: #4A3F3A;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c22736;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #3b0a12;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6b5e58;
  max-width: 560px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: #c22736;
  color: #fff;
  border-color: #c22736;
}
.btn-primary:hover {
  background: #a11d2e;
  border-color: #a11d2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 39, 54, 0.3);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(132, 31, 46, 0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(132, 31, 46, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #3b0a12;
}
.nav-logo-text { font-size: 1.15rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A3F3A;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #c22736; }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c22736;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: #c22736;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #a11d2e; transform: translateY(-1px); }
.nav-cta::after { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #3b0a12;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 10, 18, 0.88) 0%,
    rgba(132, 31, 46, 0.80) 50%,
    rgba(59, 10, 18, 0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 2rem 1.5rem;
  padding-top: 5rem;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffc9b8;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ─── Highlights ─── */
.highlights {
  padding: 5rem 0;
  background: #fff;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.highlight-card {
  background: #FFFAF5;
  border-radius: 1.25rem;
  padding: 2.25rem;
  border: 1px solid rgba(132, 31, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(132, 31, 46, 0.1);
}
.highlight-icon {
  width: 56px;
  height: 56px;
  background: #fdf0f1;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.highlight-card h3 {
  font-size: 1.3rem;
  color: #3b0a12;
  margin-bottom: 0.6rem;
}
.highlight-card p {
  color: #6b5e58;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── Menu ─── */
.menu {
  padding: 5rem 0;
  background: #FFFAF5;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle { margin: 0 auto; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.menu-category {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(132, 31, 46, 0.08);
}
.menu-category-title {
  font-size: 1.3rem;
  color: #3b0a12;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(132, 31, 46, 0.07);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #3b0a12;
  margin-bottom: 0.2rem;
}
.menu-item-desc {
  display: block;
  font-size: 0.87rem;
  color: #6b5e58;
  line-height: 1.5;
}
.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #6b5e58;
  font-style: italic;
}

/* ─── Gallery ─── */
.gallery {
  overflow: hidden;
  padding: 0;
  background: #3b0a12;
}
.gallery-track {
  display: flex;
  gap: 0.5rem;
  padding: 0;
}
.gallery-item {
  flex: 1;
  min-width: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─── About ─── */
.about {
  padding: 5rem 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(132, 31, 46, 0.12);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}
.about-content .section-eyebrow { margin-bottom: 0.5rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-text {
  color: #6b5e58;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(132, 31, 46, 0.1);
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #c22736;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.8rem;
  color: #6b5e58;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ─── Visit ─── */
.visit {
  padding: 5rem 0;
  background: #FFFAF5;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; }
.visit-info .section-eyebrow { margin-bottom: 0.5rem; }
.visit-info .section-title { margin-bottom: 1.5rem; }
.visit-details { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #fdf0f1;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  color: #3b0a12;
  margin-bottom: 0.15rem;
}
.visit-detail p {
  font-size: 0.9rem;
  color: #6b5e58;
  line-height: 1.5;
}
.visit-detail a {
  color: #c22736;
  font-weight: 500;
  transition: color 0.2s;
}
.visit-detail a:hover { color: #a11d2e; }
.visit-map {
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 16px 40px rgba(132, 31, 46, 0.1);
}

/* ─── Contact ─── */
.contact {
  padding: 5rem 0;
  background: #3b0a12;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-text .section-eyebrow { color: #ffc9b8; margin-bottom: 0.5rem; }
.contact-text .section-title { color: #fff; margin-bottom: 1rem; }
.contact-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-direct { margin-top: 1rem; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffc9b8;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.contact-email:hover { color: #fff; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ffc9b8;
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: #3b0a12; color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 0.75rem;
  color: #a5d6a7;
  font-size: 0.9rem;
  text-align: center;
}
.form-success.show { display: block; }

/* ─── Footer ─── */
.footer {
  background: #2a0710;
  padding: 3.5rem 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: #ffc9b8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Scroll Reveal ─── */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
.scroll-reveal[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile Menu ─── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 250, 245, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(132, 31, 46, 0.1);
  box-shadow: 0 12px 32px rgba(132, 31, 46, 0.1);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid,
  .visit-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .about-image { order: -1; }
  .about-image img { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links.open { display: flex; }
  .hero-content { padding-top: 4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-track { flex-direction: column; }
  .gallery-item { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .highlights, .menu, .about, .visit { padding: 3.5rem 0; }
  .contact { padding: 3.5rem 0; }
  .highlight-card { padding: 1.5rem; }
  .menu-category { padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }
}
