/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #2a2a2a;
  background: #fdf8f7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: #1a1a1a; }

/* ── Container ──────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ─────────────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
}
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: #7B2D3B;
  color: #fff;
  border-color: #7B2D3B;
}
.btn-primary:hover { background: #632430; border-color: #632430; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-nav {
  background: #7B2D3B;
  color: #fff;
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}
.btn-nav:hover { background: #632430; }
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,248,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(123,45,59,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
}
.logo-text { letter-spacing: -0.01em; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
  position: relative;
}
.nav-list a:not(.btn):hover { color: #7B2D3B; }
.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7B2D3B;
  transition: width 0.25s;
}
.nav-list a:not(.btn):hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #2a2a2a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,26,26,0.45) 0%, rgba(123,45,59,0.55) 100%),
    url('https://images.pexels.com/photos/26319138/pexels-photo-26319138.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1200') center/cover no-repeat;
  filter: brightness(0.7);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 8rem 1.5rem 4rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,230,224,0.8);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.badge svg { flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ── Highlights ─────────────────────────────────── */
.highlights {
  padding: 5rem 0;
  background: #fdf8f7;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.highlight-card:hover {
  box-shadow: 0 12px 40px rgba(123,45,59,0.1);
  transform: translateY(-4px);
}
.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(123,45,59,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.highlight-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Menu ───────────────────────────────────────── */
.menu {
  padding: 6rem 0;
  background: #fff;
}
.section-header { margin-bottom: 3.5rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.menu-category {
  background: #fdf8f7;
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(123,45,59,0.06);
}
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(123,45,59,0.12);
}
.menu-cat-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.menu-list { display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.menu-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.item-name {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
}
.item-desc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.5;
}
.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
  overflow: hidden;
  background: #1a1a1a;
  padding: 0;
}
.gallery-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll img {
  flex-shrink: 0;
  width: 33.333%;
  height: 320px;
  object-fit: cover;
  scroll-snap-align: start;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.gallery-scroll img:hover { opacity: 1; }

/* ── About ──────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: #fdf8f7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: #7B2D3B;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.15;
}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content p {
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(123,45,59,0.1);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #7B2D3B;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(123,45,59,0.15);
}

/* ── Events ─────────────────────────────────────── */
.events {
  padding: 6rem 0;
  background: #fff;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.event-card {
  background: #fdf8f7;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(123,45,59,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.event-card:hover {
  box-shadow: 0 12px 40px rgba(123,45,59,0.1);
  transform: translateY(-4px);
}
.event-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D3B;
  background: rgba(123,45,59,0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.event-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.event-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}
.events-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.events-cta p {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}

/* ── Visit ──────────────────────────────────────── */
.visit {
  padding: 6rem 0;
  background: #fdf8f7;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-address {
  font-size: 1.1rem;
  color: #333;
  margin: 1.5rem 0;
  line-height: 1.8;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.visit-detail svg { flex-shrink: 0; margin-top: 2px; }
.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.2rem;
}
.visit-detail a {
  color: #7B2D3B;
  font-weight: 500;
  transition: color 0.2s;
}
.visit-detail a:hover { color: #5a1f2a; text-decoration: underline; }
.visit-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.visit-hours p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}
.visit-map {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 7/5;
}
.visit-map a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #7B2D3B;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.map-overlay:hover { background: #632430; }

/* ── Contact ────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: #1a1a1a;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text .section-title { color: #fff; }
.contact-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D3B;
  background: rgba(123,45,59,0.08);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #2a2a2a; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 8px;
  color: #81c784;
  font-size: 0.9rem;
  text-align: center;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 0.3rem; }
.footer-brand a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-brand a:hover { color: #fff; }
.footer-links h4,
.footer-hours h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-hours p { font-size: 0.9rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image img { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,247,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list a:not(.btn) { font-size: 1.05rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .gallery-scroll img { width: 75%; height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.125rem; }
  .hero-inner { padding: 7rem 1.125rem 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badges { flex-direction: column; align-items: center; gap: 0.75rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}
