/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Geometric Background Shapes ──────────────────── */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.geo-circle--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(251,191,36,.12) 0%, transparent 70%);
  top: -100px; left: -150px;
  animation: float 20s ease-in-out infinite;
}
.geo-circle--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,222,128,.15) 0%, transparent 70%);
  bottom: -50px; right: 30%;
  animation: float 15s ease-in-out infinite reverse;
}
.geo-circle--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251,191,36,.08) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  animation: float 18s ease-in-out infinite;
}
.geo-circle--4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(251,191,36,.1) 0%, transparent 70%);
  top: -80px; left: 20%;
  animation: float 12s ease-in-out infinite reverse;
}
.geo-triangle {
  position: absolute;
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(251,191,36,.08);
  top: 15%; right: 8%;
  transform: rotate(15deg);
  animation: float 16s ease-in-out infinite;
}
.geo-square {
  position: absolute;
  border-radius: 16px;
  pointer-events: none;
}
.geo-square--1 {
  width: 120px; height: 120px;
  background: rgba(74,222,128,.1);
  top: 25%; left: 5%;
  transform: rotate(30deg);
  animation: spin 25s linear infinite;
}
.geo-square--2 {
  width: 80px; height: 80px;
  background: rgba(251,191,36,.08);
  bottom: 20%; left: 15%;
  transform: rotate(-20deg);
  animation: spin 20s linear infinite reverse;
}
.geo-square--3 {
  width: 100px; height: 100px;
  background: rgba(251,191,36,.06);
  bottom: -30px; right: 10%;
  transform: rotate(45deg);
  animation: spin 22s linear infinite;
}
.geo-diamond {
  position: absolute;
  width: 100px; height: 100px;
  background: rgba(74,222,128,.08);
  transform: rotate(45deg);
  border-radius: 8px;
  pointer-events: none;
}
.geo-diamond--1 {
  top: 10%; left: 5%;
  animation: float 14s ease-in-out infinite;
}
.geo-dots {
  position: absolute;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(251,191,36,.2) 1px, transparent 1px);
  background-size: 16px 16px;
  top: 60%; right: 5%;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #166534;
  color: #fefdf8;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid #166534;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: #15803d;
  border-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,101,52,.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #166534;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid #166534;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-outline:hover {
  background: #166534;
  color: #fefdf8;
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── Eyebrow Badge ────────────────────────────────── */
.badge-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: .375rem .875rem;
  border-radius: 9999px;
}

/* ── Intro Cards ──────────────────────────────────── */
.intro-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22,101,52,.12);
}

/* ── Menu Tabs ────────────────────────────────────── */
.menu-tab {
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  border: 2px solid #dcfce7;
  background: transparent;
  color: #166534;
  transition: all .2s ease;
}
.menu-tab:hover { background: #dcfce7; }
.menu-tab.active {
  background: #166534;
  border-color: #166534;
  color: #fefdf8;
}

/* ── Menu Item ────────────────────────────────────── */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #f5e8b0;
  transition: all .25s ease;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,101,52,.08);
  border-color: #86efac;
}
.menu-item-info h4 { font-size: 1rem; font-weight: 700; color: #14532d; margin-bottom: .25rem; }
.menu-item-info p { font-size: .8125rem; color: #6b7280; line-height: 1.5; }
.menu-item-price { font-size: 1rem; font-weight: 800; color: #166534; white-space: nowrap; padding-top: .125rem; }

/* ── Gallery ──────────────────────────────────────── */
.gallery-item {
  height: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,83,45,.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: inherit;
}
.gallery-item:hover::after { opacity: 1; }

/* ── Testimonial Cards ────────────────────────────── */
.testimonial-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(22,101,52,.12);
}

/* ── Form Inputs ──────────────────────────────────── */
.input-field {
  border: 1.5px solid #e5e7eb;
  border-radius: .625rem;
  padding: .625rem .875rem;
  font-size: .9375rem;
  font-family: inherit;
  color: #111827;
  background: #fefdf8;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  width: 100%;
}
.input-field:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.input-field::placeholder { color: #9ca3af; }

/* ── Nav ──────────────────────────────────────────── */
#site-header {
  background: rgba(254,253,248,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #dcfce7;
}
#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(22,101,52,.08);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #166534;
  transition: width .25s ease;
}
.nav-link:hover::after { width: 100%; }
.mobile-link {
  display: block;
  padding: .5rem 0;
  border-bottom: 1px solid #f0fdf4;
}
.mobile-link:last-child { border-bottom: none; }

/* ── Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 767px) {
  .geo-circle--1 { width: 300px; height: 300px; }
  .geo-circle--2 { width: 200px; height: 200px; }
  .geo-triangle { display: none; }
  .geo-square--1 { width: 60px; height: 60px; }
  .geo-square--2 { display: none; }
}
