/* ── VARIABLES ── */
:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #52b788;
  --orange: #f4831f;
  --orange-light: #ffb347;
  --cream: #fdf6ec;
  --text: #1a1a1a;
  --muted: #555;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--cream); color: var(--text); }

/* ── NAV ── */
nav {
  background: var(--green-dark);
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 2rem;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a {
  color: #e8f5e9; text-decoration: none;
  font-size: 0.95rem; font-weight: 500; transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--orange-light); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  padding: 0.4rem; z-index: 110;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-dark); flex-direction: column;
    padding: 0.5rem 0 1rem; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  nav ul.open { display: flex; }
  nav ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  nav ul li:last-child { border-bottom: none; }
  nav ul a { display: block; padding: 0.85rem 2rem; font-size: 1rem; }
}

/* ── LAYOUT ── */
.container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 2rem; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--green-dark); margin-bottom: 0.4rem; }
.section-title span { color: var(--orange); }
.section-sub { color: var(--muted); margin-bottom: 2.5rem; font-size: 1rem; }
.divider { width: 56px; height: 4px; background: var(--orange); border-radius: 2px; margin: 0.6rem 0 2rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #1b5e3a 100%);
  color: #fff; text-align: center; padding: 5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '🌴'; position: absolute; font-size: 16rem;
  opacity: 0.07; top: -2rem; left: -2rem; pointer-events: none;
}
.hero::after {
  content: '🌴'; position: absolute; font-size: 12rem;
  opacity: 0.07; bottom: -3rem; right: -1rem; pointer-events: none;
}
.hero-tag {
  display: inline-block; background: var(--orange); color: #fff;
  padding: 0.35rem 1rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.hero h1 span { color: var(--orange-light); }
.hero p { font-size: 1.1rem; opacity: 0.85; max-width: 560px; margin: 0 auto 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; background: var(--orange); color: #fff;
  padding: 0.85rem 2.2rem; border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 1rem; transition: background 0.2s, transform 0.1s; margin: 0.3rem;
}
.btn:hover { background: #e07010; transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-green { background: var(--green); }
.btn-green:hover { background: var(--green-dark); }

/* ── TABLES ── */
.menu-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.menu-table thead th {
  text-align: right; padding: 0.5rem 0.75rem;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted);
  border-bottom: 2px solid #eee; background: #f9f9f7;
}
.menu-table thead th:first-child { text-align: left; }
.menu-table tbody tr:nth-child(even) { background: #f7f7f5; }
.menu-table tbody td { padding: 0.5rem 0.75rem; border-bottom: 1px solid #eee; }
.menu-table tbody td:not(:first-child) { text-align: right; font-weight: 700; color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: var(--green-dark); color: #a5d6a7;
  text-align: center; padding: 2rem 1rem; font-size: 0.9rem;
}
footer strong { color: var(--orange-light); }
footer a { color: var(--orange-light); text-decoration: none; }

/* ── MOBILE GENERAL ── */
@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  section { padding: 3.5rem 1.25rem; }
}
