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

:root {
  --green-dark:   #1e3d0f;
  --green:        #2d5a1b;
  --green-mid:    #4a7c35;
  --green-light:  #7ab648;
  --brown:        #6b3a1f;
  --brown-light:  #a0522d;
  --cream:        #fdf8f0;
  --cream-dark:   #f5ede0;
  --tan:          #e8d5b7;
  --text:         #1a1208;
  --text-muted:   #5a4a38;
  --white:        #ffffff;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.16);
  --transition:   .25s ease;
  --max-w:        1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Utility ──────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.section__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section__header { text-align: center; margin-bottom: 56px; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,90,27,.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--ghost:hover { background: var(--green); color: var(--white); }

.btn--nav {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
}
.btn--nav:hover { background: var(--green-dark); }

.btn--full { width: 100%; justify-content: center; margin-top: 12px; }

/* ── Nav ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253,248,240,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav__logo { color: var(--green-dark); }
.logo-icon { font-size: 1.6rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
  position: relative;
}
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a.btn--nav { color: var(--white) !important; }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav__links a:not(.btn):hover::after { width: 100%; }

.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(--green-dark); }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74,124,53,.55) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(107,58,31,.4) 0%, transparent 50%),
    linear-gradient(160deg, #1e3d0f 0%, #2d5a1b 40%, #4a3010 100%);
}

/* Decorative floating particles */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(122,182,72,.2) 0 80px, transparent 80px),
    radial-gradient(circle at 85% 15%, rgba(122,182,72,.15) 0 60px, transparent 60px),
    radial-gradient(circle at 50% 60%, rgba(253,248,240,.05) 0 120px, transparent 120px);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
  background: rgba(122,182,72,.15);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(122,182,72,.3);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

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

/* ── About ────────────────────────────────────── */
.about { background: var(--cream); }

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

.about__visual { position: relative; }

.about__img-wrap {
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  height: 520px;
  background-image: url('images/farm1.jpg');
  background-size: cover;
  background-position: center 5%;
  box-shadow: var(--shadow-lg);
}

/* ── Mushroom CSS Art ─────────────────────────── */
.mushroom-art {
  position: relative;
  width: 280px;
  height: 280px;
}

.m-cap {
  position: absolute;
  bottom: 120px; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 80px;
  background: radial-gradient(ellipse at 50% 100%, #f5deb3 0%, #d4a574 60%, #a0522d 100%);
  border-radius: 65px 65px 0 0;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,.2);
}
.m-stem {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 44px;
  background: linear-gradient(to bottom, #e8d5b7, #c4a882);
  border-radius: 4px;
}
.m-cap--2 {
  bottom: 155px; left: 28%;
  width: 80px; height: 52px;
  background: radial-gradient(ellipse at 50% 100%, #fdf8f0 0%, #e8c99a 60%, #8b6340 100%);
}
.m-stem--2 {
  bottom: 120px; left: calc(28% + 29px);
  width: 16px; height: 36px;
  background: linear-gradient(to bottom, #ede0cc, #b89a78);
}
.m-cap--3 {
  bottom: 140px; left: 58%;
  width: 90px; height: 58px;
  background: radial-gradient(ellipse at 50% 100%, #f5e6cc 0%, #dba87a 60%, #7a4a28 100%);
}
.m-stem--3 {
  bottom: 100px; left: calc(58% + 37px);
  width: 14px; height: 42px;
  background: linear-gradient(to bottom, #e8d5b7, #b89060);
}
.m-ground {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 24px;
  background: radial-gradient(ellipse, #4a7c35 0%, #2d5a1b 100%);
  border-radius: 50%;
  opacity: .7;
}

.spore {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(253,248,240,.6);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}
.s1 { top: 40px; left: 60px; animation-delay: 0s; }
.s2 { top: 70px; right: 50px; animation-delay: 1s; }
.s3 { top: 100px; left: 40px; width: 4px; height: 4px; animation-delay: 2s; }
.s4 { top: 30px; right: 80px; width: 4px; height: 4px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(-12px); opacity: 1; }
}

.about__stat-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.about__stat-card strong { font-size: 2.5rem; font-weight: 700; color: var(--green); font-family: 'Playfair Display', serif; }
.about__stat-card small { font-size: .75rem; color: var(--text-muted); }

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: .98rem;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  flex-shrink: 0;
}

/* ── Products ─────────────────────────────────── */
.products { background: var(--cream-dark); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.products__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tan);
}

.product-card--featured {
  background: var(--white);
  color: var(--text);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  border-width: 3px;
}
.product-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.product-card--featured h3 { color: var(--green-dark); }
.product-card--featured p { color: var(--text-muted); }

.product-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.product-card__icon { font-size: 3rem; }

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
}

.product-card p {
  color: var(--text-muted);
  font-size: .95rem;
  flex: 1;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card__tags li {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(45,90,27,.1);
  color: var(--green);
}
.product-card--featured .product-card__tags li {
  background: rgba(45,90,27,.1);
  color: var(--green);
}

/* ── Why Us ───────────────────────────────────── */
.why-us { background: var(--cream); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  text-align: center;
  padding: 36px 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--tan);
  transition: var(--transition);
}
.feature:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.feature p {
  color: var(--text-muted);
  font-size: .93rem;
}

/* ── Visit ────────────────────────────────────── */
.visit {
  background: linear-gradient(135deg, #f5ede0 0%, #e8d5b7 100%);
}

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

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.visit__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.visit__item div { display: flex; flex-direction: column; gap: 4px; }
.visit__item strong { color: var(--green-dark); font-weight: 600; }
.visit__item span { color: var(--text-muted); font-size: .95rem; }
.visit__item a { color: var(--green-mid); transition: color var(--transition); }
.visit__item a:hover { color: var(--green-dark); }

.visit__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visit__photo {
  border-radius: 20px;
  height: 300px;
  background-image: url('images/farm2.jpg');
  background-size: cover;
  background-position: center 75%;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}

.visit__map {
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}


/* ── Contact ──────────────────────────────────── */
.contact {
  background: var(--cream);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light), var(--green-dark));
}

.contact__inner { max-width: 680px; margin: 0 auto; }

.contact__form {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-muted);
  letter-spacing: .03em;
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 13px 16px;
  border: 2px solid var(--tan);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}
.form__group select { cursor: pointer; }

.contact__alt {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: .92rem;
}
.contact__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  margin-top: 10px;
  padding: 10px 20px;
  border: 2px solid var(--green);
  border-radius: 50px;
  transition: var(--transition);
}
.contact__social:hover {
  background: var(--green);
  color: var(--white);
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: .9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.footer__ig {
  color: var(--green-light);
  font-weight: 600;
  font-size: .9rem;
  transition: color var(--transition);
}
.footer__ig:hover { color: var(--white); }

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__contact p { font-size: .9rem; margin-bottom: 10px; line-height: 1.7; }
.footer__contact a { color: var(--green-light); font-weight: 600; font-size: .9rem; transition: color var(--transition); }
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Toast ────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--green-dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: .95rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: .3s ease;
  z-index: 999;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(30,61,15,.97); backdrop-filter: blur(16px); justify-content: center; align-items: center; gap: 28px; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; color: var(--white) !important; }
  .nav__burger { display: flex; z-index: 101; }

  .about__grid,
  .visit__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img-wrap { max-width: 100%; margin: 0 auto; height: 300px; background-position: center 30%; }
  .about__stat-card { right: 0; bottom: -10px; }

  .products__grid { grid-template-columns: 1fr; gap: 24px; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-6px); }

  .why-us__grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; }

  .visit__right { gap: 12px; }
  .visit__photo { height: 200px; background-position: center 55%; }
  .visit__map { height: 200px; }
}

@media (max-width: 480px) {
  .about__img-wrap { height: 240px; background-position: center 30%; }
  .visit__photo { height: 160px; background-position: center 55%; }
  .visit__map { height: 160px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .why-us__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
}
