/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #2D5016;
  --green-mid:    #4A7C2F;
  --green-soft:   #7BAE5A;
  --green-pale:   #C8E6A0;
  --green-mist:   #EEF7E4;
  --cream:        #FAF6EE;
  --cream-dark:   #F0E8D8;
  --brown-warm:   #8B5E3C;
  --brown-light:  #C4956A;
  --white:        #FFFFFF;
  --text-dark:    #1E2A14;
  --text-mid:     #4A5240;
  --text-light:   #7A8570;
  --shadow-sm:    0 2px 12px rgba(45,80,22,.08);
  --shadow-md:    0 8px 32px rgba(45,80,22,.12);
  --shadow-lg:    0 20px 60px rgba(45,80,22,.16);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-full:  999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn--primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,47,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(250,246,238,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.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: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.nav.scrolled .nav__logo { color: var(--text-dark); }

.nav__logo-leaf {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-pale);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__links a:hover::after { width: 100%; }

.nav.scrolled .nav__links a { color: var(--text-mid); }
.nav.scrolled .nav__links a::after { background: var(--green-mid); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__burger span { background: var(--text-dark); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(250,246,238,0.98);
  backdrop-filter: blur(12px);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--cream-dark);
}

.nav__mobile.open { display: flex; }

.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--green-mid); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,40,10,0.72) 0%,
    rgba(45,80,22,0.55) 50%,
    rgba(10,20,5,0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  animation: heroFadeUp 1s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 20px;
  animation: heroFadeUp 1s 0.2s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: heroFadeUp 1s 0.35s ease both;
}

.hero__title em {
  font-style: italic;
  color: var(--green-pale);
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 36px;
  animation: heroFadeUp 1s 0.5s ease both;
}

.hero__cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1s 0.65s ease both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeUp 1s 1s ease both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--green-mid);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--green-deep);
  border-bottom: 3px solid var(--green-deep);
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-track .dot {
  color: var(--green-pale);
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about__img-badge small {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about__body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-mid);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── MENU SECTION ── */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
}

.menu-section .section-title,
.menu-section .section-eyebrow {
  text-align: center;
}

.menu-section__sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 2px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.filter-tab:hover {
  border-color: var(--green-soft);
  color: var(--green-mid);
}

.filter-tab.active {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74,124,47,.3);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  animation: cardFadeIn 0.5s ease both;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card.hidden {
  display: none;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.08);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  letter-spacing: 0.03em;
}

.product-card__body {
  padding: 20px 22px 24px;
}

.product-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 100px 0;
  background: var(--green-mist);
}

.contact-section .section-title,
.contact-section .section-eyebrow {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 52px 0 48px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: color var(--transition);
}

.contact-link:hover { color: var(--green-deep); }

/* Map */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

/* ── FOOTER ── */
.footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.social-btn:hover {
  background: var(--green-mid);
  transform: translateY(-3px);
  border-color: var(--green-mid);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer__contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.footer__contact a:hover { color: var(--green-pale); }

.footer__bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__img { height: 380px; }
  .about__img-badge { right: 16px; bottom: -16px; }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__contact { align-items: center; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(3.5rem, 16vw, 6rem); }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about__stats { gap: 20px; }
  .stat__num { font-size: 1.6rem; }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .filter-tabs { gap: 8px; }
  .filter-tab { padding: 8px 18px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero__cta-row { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card__img-wrap { height: 160px; }
  .product-card__body { padding: 14px 14px 18px; }
  .product-card__name { font-size: 0.95rem; }
  .product-card__desc { display: none; }
  .about { padding: 64px 0; }
  .menu-section { padding: 64px 0; }
  .contact-section { padding: 64px 0; }
}