/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #FDF8F0;
  color: #3D2117;
  font-family: 'DM Sans', 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; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4521E;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #3D2117;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.1rem;
  color: #5A3428;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #D4521E;
  color: #fff;
}
.btn-primary:hover { background: #BE3E16; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,82,30,0.3); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-full { width: 100%; }

/* ── Nav ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,33,23,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(61,33,23,0.1); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #3D2117;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5A3428;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #D4521E; }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4521E;
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: #D4521E;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #BE3E16; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3D2117;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(227,163,62,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,82,30,0.4) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 50%, rgba(154,46,19,0.25) 0%, transparent 60%),
    linear-gradient(160deg, #611E12 0%, #D4521E 40%, #E3A33E 70%, #F5D99A 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,33,23,0.28);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.75);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #FDF8F0;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-accent {
  font-style: italic;
  font-weight: 600;
  color: #F5D99A;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(253,248,240,0.85);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(253,248,240,0.8);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(253,248,240,0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Intro Strip ────────────────────────────────── */
.intro-strip {
  background: #3D2117;
  padding: 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.intro-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 40px 32px;
  color: #FDF8F0;
}
.intro-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.intro-item span {
  font-size: 0.88rem;
  color: rgba(253,248,240,0.65);
  line-height: 1.5;
}
.intro-divider {
  width: 1px;
  background: rgba(253,248,240,0.12);
  align-self: stretch;
}

/* ── Menu ───────────────────────────────────────── */
.menu {
  padding: 100px 0;
  background: #FDF8F0;
}
.menu-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5A3428;
  background: transparent;
  border: 2px solid rgba(61,33,23,0.15);
  transition: all 0.25s;
}
.menu-tab:hover { border-color: #D4521E; color: #D4521E; }
.menu-tab.active {
  background: #D4521E;
  border-color: #D4521E;
  color: #fff;
}
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(61,33,23,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(61,33,23,0.12); }
.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 24px; }
.menu-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #3D2117;
}
.menu-card-body p {
  font-size: 0.92rem;
  color: #5A3428;
  line-height: 1.65;
}
.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(61,33,23,0.08);
  gap: 16px;
  flex-wrap: wrap;
}
.menu-list-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #3D2117;
}
.menu-list-item span {
  font-size: 0.9rem;
  color: #5A3428;
  line-height: 1.5;
}
.menu-note {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #7A2514;
  font-style: italic;
  opacity: 0.7;
  text-align: center;
}

/* ── About ──────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: #F9E0D4;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(61,33,23,0.15);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(61,33,23,0.2);
  border: 4px solid #F9E0D4;
}
.about-img-float img { width: 260px; height: 200px; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  background: #D4521E;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}
.about-text p {
  font-size: 1.05rem;
  color: #5A3428;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(61,33,23,0.12);
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4521E;
}
.about-stat-label {
  font-size: 0.85rem;
  color: #7A2514;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: #FDF8F0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Visit ──────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: #F9E0D4;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 32px; }
.visit-details { display: flex; flex-direction: column; gap: 28px; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #3D2117;
}
.visit-detail span {
  font-size: 0.92rem;
  color: #5A3428;
  line-height: 1.6;
}
.visit-map { min-height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 36px rgba(61,33,23,0.12); }

/* ── Contact ────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: #3D2117;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text .section-title { color: #FDF8F0; }
.contact-text p {
  font-size: 1.05rem;
  color: rgba(253,248,240,0.7);
  line-height: 1.75;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.6);
}
.form-group input,
.form-group textarea {
  background: rgba(253,248,240,0.08);
  border: 1px solid rgba(253,248,240,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #FDF8F0;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(253,248,240,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: #D4521E;
  background: rgba(253,248,240,0.12);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: 12px;
  color: #4ADE80;
  font-weight: 500;
}
.form-success.show { display: flex; }

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #D4521E 0%, #E3A33E 100%);
  text-align: center;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.7);
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3D2117;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(61,33,23,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-primary { background: #3D2117; color: #FDF8F0; }
.cta-actions .btn-primary:hover { background: #5A3428; box-shadow: 0 8px 24px rgba(61,33,23,0.3); }
.cta-actions .btn-secondary { border-color: rgba(61,33,23,0.3); color: #3D2117; }
.cta-actions .btn-secondary:hover { background: rgba(61,33,23,0.08); border-color: #3D2117; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: #2A1610;
  color: #FDF8F0;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FDF8F0;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(253,248,240,0.6);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong,
.footer-contact strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.45);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(253,248,240,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: #D4521E; }
.footer-contact a {
  font-size: 0.92rem;
  color: rgba(253,248,240,0.7);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #D4521E; }
.footer-contact span {
  font-size: 0.92rem;
  color: rgba(253,248,240,0.6);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(253,248,240,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 0.82rem;
  color: rgba(253,248,240,0.4);
}

/* ── Mobile Nav ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,240,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(61,33,23,0.08);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 16px 32px rgba(61,33,23,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .intro-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: 16px; bottom: -24px; }
  .about-img-main img { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .intro-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: center; gap: 12px; }
  .about-stats { flex-direction: column; gap: 24px; }
}
