:root {
  --bg:          #FEFAF2;
  --bg-alt:      #F0E8D0;
  --bg-dark:     #1B3A08;
  --text:        #1C2E0A;
  --muted:       #5A6E46;
  --primary:     #2A6010;
  --primary-dark:#1C4509;
  --yellow:      #F5C518;
  --orange:      #E07820;
  --surface:     #FFFFFF;
  --border:      rgba(28, 46, 10, 0.09);
  --shadow:      0 16px 48px rgba(28, 46, 10, 0.09);
  --radius:      1.25rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 4px 10px;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 0;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--yellow); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  background-image: url("images/local (3).jpeg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27, 58, 8, 0.88) 0%,
    rgba(27, 58, 8, 0.62) 60%,
    rgba(27, 58, 8, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 4rem 0 3rem;
}

.hero-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-content h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--yellow);
}

.hero-content > p {
  max-width: 48rem;
  margin: 1.5rem auto 2.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── FEATURES BAR ── */
.features-bar {
  background: var(--bg-dark);
  border-top: 1px solid rgba(245, 197, 24, 0.12);
  padding: 1.1rem 0;
}

.features-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
}

.feature-item svg { color: var(--yellow); flex-shrink: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(245, 197, 24, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

/* ── SECTIONS ── */
.section { padding: 5rem 0; }

.section-gallery  { background: var(--bg); }
.section-menu     { background: var(--bg-alt); }
.section-events   { background: var(--bg-dark); color: #fff; }
.section-contact  { background: var(--bg); }

.section-title {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}

.section-title span {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.section-events .section-title span { color: var(--yellow); }

.section-title h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.section-events .section-title h2 { color: #fff; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-card--tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.45s ease;
}

.gallery-card:hover img { transform: scale(1.04); }

/* ── MENU ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.menu-card-icon {
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.menu-card h3 {
  margin: 0 0 1.1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--text);
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.93rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border);
}

.menu-card li:last-child { border-bottom: 0; }

.menu-card li span {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.cardapio-full {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.cardapio-img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: auto;
  object-fit: contain;
}

/* ── EVENTS ── */
.events-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: center;
}

.events-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.events-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.events-content > p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: grid;
  gap: 1.25rem;
}

.events-list li {
  padding-left: 1.1rem;
  border-left: 3px solid var(--yellow);
  display: grid;
  gap: 0.2rem;
}

.events-list strong {
  color: var(--yellow);
  font-size: 1rem;
  display: block;
}

.events-list span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
}

.contact-card > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 1.1rem;
}

.contact-card li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.contact-card li div { line-height: 1.55; }

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover { text-decoration: underline; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 420px;
  display: block;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(245, 197, 24, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-link {
  color: var(--yellow);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-link:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }

  .gallery-card--tall {
    grid-row: span 2;
  }

  .menu-grid { grid-template-columns: 1fr; max-width: 460px; }

  .events-inner,
  .contact-grid { grid-template-columns: 1fr; }

  .events-inner { gap: 2.5rem; }
}

@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    display: none;
    padding-bottom: 0.75rem;
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: inline-flex; }

  .hero-section { min-height: 85vh; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-card,
  .gallery-card--tall {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .features-inner { gap: 1rem 2rem; }

  .section { padding: 3.5rem 0; }
}
