:root {
  --bg: #f4f7ee;
  --surface: #ffffff;
  --ink: #1d2a1f;
  --muted: #5f6f62;
  --primary: #0f8b52;
  --primary-dark: #0a6b3e;
  --accent: #e7a424;
  --line: #dce8d5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Flex", "Roboto", sans-serif;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  color: var(--ink);
  background: radial-gradient(circle at 92% 8%, #fff4c8 0%, #e6f6cf 36%, var(--bg) 100%);
}

[id] {
  scroll-margin-top: 94px;
}

body {
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: inherit;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.top-strip {
  background: #0d6a40;
  color: #e8f7da;
}

.top-strip-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.top-left a,
.top-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.top-right a {
  width: 26px;
  height: 26px;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(220, 248, 196, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d9e6c9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-weight: 700;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  opacity: 0.92;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-menu a i {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--primary-dark);
  background: #edf6e8;
  border: 1px solid #d5e6cd;
}

.nav-menu a:hover {
  color: var(--primary-dark);
  background: #f5faef;
  opacity: 1;
}

.nav-menu a:hover i {
  background: #deefd8;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 34px;
  height: 28px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 999px;
  background: var(--ink);
  margin: 5px 0;
}

.hero-slider {
  padding: 0;
}

.farm-swiper,
.farm-slide {
  height: clamp(520px, 88vh, 860px);
}

.farm-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.farm-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.farm-slide.swiper-slide-active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(7, 31, 20, 0.82) 0%, rgba(9, 62, 38, 0.55) 46%, rgba(11, 78, 47, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 3.5rem 0;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #dbf9bb;
  border: 1px solid rgba(216, 248, 181, 0.45);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(1.775rem, 3.8vw, 3.225rem);
  margin-top: 0.9rem;
  max-width: 16ch;
}

.hero-desc {
  color: #ebf7e2;
  font-size: clamp(1.02rem, 1.9vw, 1.28rem);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0.9rem 1.45rem;
  font-weight: 800;
  font-size: 1.03rem;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #22b66d);
  color: #fff;
}

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

.btn-light {
  background: rgba(255, 255, 255, 0.94);
  color: #184529;
}

.hero-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(217, 247, 185, 0.75);
  background: rgba(9, 63, 39, 0.56);
  color: #fff;
}

.hero-nav::after {
  font-size: 1rem !important;
  font-weight: 800;
}

.hero-pagination {
  bottom: 18px !important;
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(232, 248, 211, 0.64);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

.intro-about {
  background: #f7f7f7;
  padding: 70px 0;
}

.intro-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1rem;
  align-items: stretch;
}

.intro-about-media {
  border-radius: 10px;
  overflow: hidden;
  min-height: 620px;
  background: #d8dfcf;
}

.intro-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-about-content {
  border-radius: 10px;
  background: #084c31;
  color: #ebf9df;
  padding: clamp(1.3rem, 2.5vw, 2.1rem);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag-light {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-about-content h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 0.9rem;
  max-width: 22ch;
}

.intro-about-content p {
  color: #d6ead2;
  max-width: 54ch;
  font-size: 1.06rem;
}

.intro-cards {
  margin: 1.35rem 0 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.9rem;
}

.intro-card {
  border-radius: 12px;
  background: #ffffff;
  padding: 1.1rem;
  border: 1px solid #d6e2cc;
}

.intro-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #f6fee8;
  background: #6eaa26;
  margin-bottom: 0.75rem;
}

.intro-card h3 {
  font-size: 22px;
  color: #0b2e1c;
  margin-bottom: 0.35rem;
}

.intro-card p {
  color: #3f5d49;
  font-size: 17px;
  margin-bottom: 0;
}

section {
  padding: 4.5rem 0;
}

.highlights {
  background: #fff;
}

.product-preview-head {
  text-align: center;
  margin: 0 auto 2rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
}

.product-preview-grid {
  align-items: stretch;
}

.product-preview-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe8d9;
  box-shadow: 0 12px 28px rgba(18, 69, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(18, 69, 42, 0.14);
}

.product-preview-image-wrap {
  position: relative;
}

.product-preview-image-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-preview-icon {
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #4caf63;
  color: #ffffff;
  border: 6px solid #ffffff;
  font-size: 2rem;
  box-shadow: 0 10px 24px rgba(34, 110, 52, 0.18);
}

.product-preview-body {
  padding: 3.5rem 1rem 1.5rem;
  text-align: center;
}

.product-preview-body h3 {
  font-size: 1.2rem;
  color: #24523a;
  margin: 0;
}

.about {
  background: linear-gradient(180deg, #f5f9ee 0%, #ffffff 90%);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: center;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: #d7870c;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.about-content h2,
.section-head h2,
.contact-content h2,
.cta-wrap h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.85rem);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.about-stats div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.7rem;
}

.about-stats strong {
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.about-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.about-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(21, 62, 35, 0.2);
}

.products {
  background: #fff;
}

.product-page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  background: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2200&q=80") center/cover;
  overflow: hidden;
}

.product-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 49, 31, 0.55), rgba(15, 49, 31, 0.55));
}

.product-page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.product-page-breadcrumb {
  color: #eef6ea;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  margin-bottom: 0.8rem;
}

.product-page-hero-content p:last-child {
  color: #f4f8ee;
  max-width: 58ch;
  margin: 0 auto;
}

.contact-page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  background: url("https://images.unsplash.com/photo-1492496913980-501348b61469?auto=format&fit=crop&w=2200&q=80") center/cover;
  overflow: hidden;
}

.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 57, 36, 0.62), rgba(10, 57, 36, 0.62));
}

.contact-page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.contact-page-hero-content h1 {
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  margin-bottom: 0.8rem;
}

.contact-page-hero-content p:last-child {
  color: #eff7eb;
  max-width: 60ch;
  margin: 0 auto;
}

.contact-page-info {
  background: #f7fbf2;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-info-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dbe8d4;
  padding: 1.3rem;
  box-shadow: 0 14px 32px rgba(19, 73, 44, 0.08);
}

.contact-info-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e8f4df;
  color: var(--primary-dark);
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: #173324;
  margin-bottom: 0.35rem;
}

.contact-info-card p {
  color: #597061;
  margin: 0;
}

.product-catalog {
  background: #ffffff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.25rem;
}

.catalog-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe8d9;
  box-shadow: 0 14px 32px rgba(18, 69, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(18, 69, 42, 0.14);
}

.catalog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.catalog-card-body {
  padding: 1.15rem;
}

.catalog-card-body h3 {
  font-size: 1.5rem;
  color: #173324;
  margin-bottom: 0.55rem;
}

.catalog-card-body p {
  color: #556a5b;
  margin-bottom: 0;
}

.section-head {
  max-width: 62ch;
  margin-bottom: 1.3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(170deg, #fff, #f4faea);
  padding: 1rem;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(16, 80, 46, 0.12);
}

.cta-band {
  background: linear-gradient(rgba(8, 58, 35, 0.84), rgba(9, 78, 47, 0.82)), url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.cta-wrap {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
}

.cta-wrap h2 {
  color: #fff;
  max-width: 22ch;
}

.news {
  background: #f8faf3;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1rem;
}

.news-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.news-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.news-card h3 {
  font-size: 1.3rem;
  padding: 1rem;
}

.contact {
  background: linear-gradient(180deg, #f4f8ee 0%, #ffffff 100%);
}

.contact-shell {
  border-radius: 28px;
  background: linear-gradient(135deg, #f9fcf5, #ffffff);
  border: 1px solid #d8e4cf;
  box-shadow: 0 18px 42px rgba(20, 70, 42, 0.1);
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.faq {
  background: #f5f9ee;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 32px rgba(22, 62, 36, 0.12);
}

.faq-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.faq-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  font-weight: 700;
  color: #e7f8d8;
  background: #0d6a40;
}

.faq-content h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.faq-list {
  margin-top: 1rem;
  border-top: 1px solid #cdddc4;
}

.faq-item {
  border-bottom: 1px solid #cdddc4;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.32s ease;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 2rem 0.95rem 0.2rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #183922;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer p {
  margin: 0 0 1rem;
  padding: 0 0.2rem;
  color: #47604d;
}

.contact-content ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.contact-content p {
  max-width: 34ch;
}

.contact-content {
  border-radius: 24px;
  background: linear-gradient(160deg, #0b5b39, #117145);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  box-shadow: 0 20px 40px rgba(11, 91, 57, 0.16);
}

.contact-content .section-tag,
.contact-content h2,
.contact-content p,
.contact-content li {
  color: #ffffff;
}

.contact-content p {
  color: #e4f2e4;
}

.contact-content .section-tag {
  color: #ffd271;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 1rem;
  box-shadow: none;
}

.contact-point i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 210, 113, 0.18);
  color: #ffd271;
  font-size: 1.3rem;
  flex: 0 0 auto;
}

.contact-point strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.contact-point span {
  color: #dbebe1;
  font-size: 0.96rem;
}

.contact-content li {
  margin-bottom: 0.5rem;
  color: #334736;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-form {
  border: 1px solid #d8e4cf;
  border-radius: 24px;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 16px 34px rgba(20, 62, 37, 0.07);
  display: grid;
  gap: 0.55rem;
}

.form-head {
  margin-bottom: 0.45rem;
}

.form-head h3 {
  font-size: 1.45rem;
  color: #123020;
  margin-bottom: 0.2rem;
}

.form-head p {
  margin: 0;
  color: #5f6f62;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.88rem;
  color: #123020;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfddc3;
  border-radius: 14px;
  background: #fbfdf8;
  padding: 0.82rem 0.9rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(16, 148, 89, 0.2);
}

.form-message {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.site-footer {
  background: #246b4e;
  color: #dcecdc;
  position: relative;
}

.footer-top {
  padding: 3.5rem 0 2.2rem;
  border-top: 1px solid rgba(223, 239, 219, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.95fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand-col p,
.footer-contact-col li,
.footer-links-col a,
.footer-products-col a {
  color: #dcecdc;
}

.footer-brand-col p {
  max-width: 32ch;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links-col h3,
.footer-products-col h3,
.footer-contact-col h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.footer-links-col ul,
.footer-products-col ul,
.footer-contact-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.footer-contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact-col i {
  color: #ffcc67;
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(223, 239, 219, 0.14);
  background: #1f5c43;
}

.footer-bottom-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-bottom-wrap p {
  margin: 0;
  font-size: 0.92rem;
  color: #dcecdc;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  font-weight: 700;
  color: #f5f9ee;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .highlight-grid,
  .product-grid,
  .news-grid,
  .catalog-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }
  .about-grid,
  .contact-grid,
  .faq-grid,
  .intro-about-grid {
    grid-template-columns: 1fr;
  }
  .contact-content p {
    max-width: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .intro-about-media {
    min-height: 420px;
  }
  .intro-about-content {
    min-height: auto;
  }
  .intro-about-content h2 {
    max-width: 16ch;
  }
  .farm-swiper,
  .farm-slide {
    height: auto;
    min-height: 620px;
  }
  .product-page-hero {
    min-height: 340px;
  }
  .contact-page-hero {
    min-height: 300px;
  }
}
@media (max-width: 760px) {
  .top-strip-wrap {
    min-height: auto;
    font-size: 0.76rem;
    justify-content: center;
    flex-direction: column;
    padding: 0.45rem 0;
  }
  .top-left,
  .top-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-left a,
  .top-right a {
    font-size: 0.76rem;
  }
  .header-wrap {
    min-height: 70px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand-text strong {
    font-size: 0.98rem;
  }
  .brand-text small {
    font-size: 0.72rem;
  }
  .nav-toggle {
    display: inline-block;
  }
  .nav-menu {
    position: absolute;
    top: 78px;
    right: 4%;
    width: min(300px, 92vw);
    border: 1px solid #d3e2c6;
    border-radius: 12px;
    background: #fbfdf6;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 12px 28px rgba(16, 55, 31, 0.16);
  }
  .nav-menu.open {
    display: flex;
  }
  .farm-swiper,
  .farm-slide {
    height: auto;
    min-height: 560px;
  }
  .hero-content {
    max-width: 100%;
    padding: 2.4rem 0 3.4rem;
  }
  .hero-content h1 {
    font-size: clamp(1.475rem, 6.3vw, 2.325rem);
  }
  .hero-desc {
    max-width: 100%;
    font-size: 1rem;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .nav-menu a i {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.9rem;
  }
  .hero-nav {
    display: none;
  }
  .faq-media img {
    min-height: 280px;
  }
  .faq-item summary {
    font-size: 1rem;
  }
  .faq-card {
    justify-content: flex-start;
    row-gap: 0.3rem;
  }
  .faq-card span {
    flex: 1 1 100%;
  }
  .contact-shell {
    padding: 1rem;
    border-radius: 20px;
  }
  .contact-content,
  .contact-form {
    border-radius: 18px;
  }
  .contact-point {
    padding: 0.85rem;
  }
  .intro-cards {
    grid-template-columns: 1fr;
  }
  .intro-about-content h2 {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }
  .intro-card h3 {
    font-size: 1.65rem;
  }
  .highlight-grid,
  .product-grid,
  .news-grid,
  .catalog-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .product-page-hero {
    min-height: 280px;
  }
  .contact-page-hero {
    min-height: 260px;
  }
  .product-page-hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .contact-page-hero-content h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .footer-grid,
  .footer-bottom-wrap {
    grid-template-columns: 1fr;
  }
  .footer-bottom-wrap {
    display: grid;
    justify-content: flex-start;
    padding: 1rem 0;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
  }
  .footer-socials {
    flex-wrap: wrap;
  }
  section {
    padding: 3.5rem 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/*# sourceMappingURL=styles.css.map */
