:root {
  --green: #236b43;
  --green-dark: #123c27;
  --green-soft: #eaf5ee;
  --gold: #d88927;
  --gold-soft: #fff4e4;
  --ink: #18201a;
  --text: #424b43;
  --muted: #70796f;
  --line: #dfe7dd;
  --white: #ffffff;
  --bg: #f7faf5;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 6px 18px rgba(24, 32, 26, 0.08);
  --shadow-md: 0 16px 44px rgba(24, 32, 26, 0.12);
  --max-w: 1120px;
  --nav-h: 78px;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  line-height: 1.7;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.12;
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

section {
  padding: 92px 0;
}

.section-inner,
.nav-inner,
.hero-inner,
.footer-inner,
.footer-bottom {
  width: min(100% - 40px, var(--max-w));
  margin: 0 auto;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2,
.about-text-col h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
}

.section-tag,
.badge {
  align-items: center;
  border: 1px solid rgba(35, 107, 67, 0.18);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 7px 14px;
  text-transform: uppercase;
}

.section-tag {
  background: var(--green-soft);
  color: var(--green);
}

.btn-primary,
.btn-ghost,
.nav-cta {
  align-items: center;
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 12px 26px rgba(35, 107, 67, 0.22);
  color: var(--white);
}

.btn-primary:hover {
  background: #1d5b39;
  box-shadow: 0 16px 34px rgba(35, 107, 67, 0.28);
  transform: translateY(-2px);
}

.btn-primary.sent {
  background: #16804f;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.full-width {
  width: 100%;
}

nav {
  left: 0;
  padding: 16px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  z-index: 50;
}

nav.scrolled,
nav.menu-active {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(24, 32, 26, 0.08);
  padding: 10px 0;
}

.nav-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 48px;
}

.logo {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(18, 32, 26, 0.12);
  display: block;
  height: 54px;
  max-width: 230px;
  object-fit: contain;
  padding: 7px 10px;
  transition: box-shadow var(--transition), height var(--transition), padding var(--transition);
  width: auto;
}

nav.scrolled .logo-img,
nav.menu-active .logo-img {
  box-shadow: none;
  height: 48px;
  padding: 6px 9px;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  position: relative;
}

nav.scrolled .nav-links a,
nav.menu-active .nav-links a {
  color: var(--muted);
}

.nav-links a::after {
  background: var(--gold);
  border-radius: 999px;
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width var(--transition);
  width: 0;
}

.nav-links a:hover,
.nav-links a.active,
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  min-height: 42px;
  padding: 10px 18px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #bf741f;
  transform: translateY(-1px);
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  width: 20px;
}

nav.scrolled .menu-toggle,
nav.menu-active .menu-toggle {
  background: var(--green-soft);
  border-color: rgba(35, 107, 67, 0.18);
}

nav.scrolled .menu-toggle span,
nav.menu-active .menu-toggle span {
  background: var(--green);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#hero {
  align-items: center;
  background:
    linear-gradient(rgba(18, 60, 39, 0.72), rgba(18, 60, 39, 0.88)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1600&q=80") center / cover;
  display: flex;
  min-height: 100svh;
  padding: 128px 0 76px;
  position: relative;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #dcf4e5;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  letter-spacing: 0;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-sub {
  color: #d7eadc;
  font-size: clamp(1rem, 2vw, 1.12rem);
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-trust {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
}

.trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 16px;
}

.trust-item strong {
  color: var(--white);
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1;
}

.trust-item span {
  color: #bfd9c5;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
}

.market-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
}

.market-card-head {
  align-items: center;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.market-card-head span {
  color: #d7eadc;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.food-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.food-tile {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  min-height: 118px;
  padding: 18px;
}

.food-tile.tile-lg {
  grid-column: span 2;
}

.food-icon {
  background: var(--gold-soft);
  border-radius: 999px;
  color: #9e5c14;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 14px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.food-tile strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
}

#about,
#services {
  background: var(--white);
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  margin-bottom: 58px;
}

.about-illustration {
  background: linear-gradient(145deg, #eef7ef, #d9eddf);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  min-height: 340px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.store-sign {
  background: var(--green);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  padding: 20px;
  text-align: center;
}

.shelf {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  bottom: 72px;
  box-shadow: var(--shadow-sm);
  height: 54px;
  left: 34px;
  position: absolute;
  right: 34px;
}

.shelf::before,
.shelf::after {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 30px;
  position: absolute;
  top: 12px;
  width: 30px;
}

.shelf::before {
  left: 24px;
}

.shelf::after {
  left: 66px;
}

.shelf-two {
  bottom: 132px;
  left: 58px;
  right: 58px;
}

.illus-tag {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 14px;
  position: absolute;
}

.top-right {
  right: 20px;
  top: 20px;
}

.bottom-left {
  bottom: 20px;
  left: 20px;
}

.about-text-col p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.value-pill {
  background: var(--green-soft);
  border: 1px solid rgba(35, 107, 67, 0.16);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 7px 14px;
}

.stats-row {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.stat-card {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 32px 18px;
  text-align: center;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-num {
  color: var(--white);
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 900;
}

.stat-lbl {
  color: #b9d5c3;
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 6px;
  text-transform: uppercase;
}

.products-grid,
.services-grid {
  display: grid;
  gap: 22px;
}

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.service-card,
.info-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(24, 32, 26, 0.02);
}

.product-card,
.service-card {
  padding: 28px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-card:hover,
.service-card:hover {
  border-color: rgba(35, 107, 67, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.featured-product {
  background: var(--gold-soft);
  border-color: rgba(216, 137, 39, 0.45);
}

.product-badge {
  background: var(--gold);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 5px 10px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
}

.product-kicker,
.service-number {
  color: var(--green);
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.product-card h3,
.service-card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.product-card p,
.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card {
  background: #fbfdf9;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.info-card {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  padding: 20px;
}

.info-icon {
  align-items: center;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  color: var(--green);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 44px;
}

.info-card strong {
  color: var(--ink);
  display: block;
  font-size: 0.84rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.info-card p,
.info-card a {
  color: var(--muted);
  font-size: 0.94rem;
}

.info-card a:hover {
  color: var(--green);
}

.contact-form {
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.contact-form h3 {
  border-bottom: 1px solid var(--line);
  font-size: 1.42rem;
  margin-bottom: 22px;
  padding-bottom: 16px;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: block;
}

.contact-form label span {
  color: var(--ink);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  margin-bottom: 14px;
  padding: 13px 14px;
  resize: vertical;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(35, 107, 67, 0.1);
  outline: 0;
}

.contact-form textarea {
  min-height: 126px;
}

footer {
  background: var(--ink);
  color: #aeb9ad;
  padding-top: 58px;
}

.footer-inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 44px;
  grid-template-columns: 1.5fr 0.85fr 1.2fr;
  padding-bottom: 42px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo-img {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  height: 58px;
  max-width: 250px;
}

.footer-brand p {
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links li,
.footer-contact li {
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  color: #7d887d;
  font-size: 0.82rem;
  padding: 18px 0;
  text-align: center;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 14px 32px rgba(18, 32, 26, 0.24);
  color: var(--white);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 9px;
  min-height: 56px;
  padding: 12px 18px;
  position: fixed;
  right: 22px;
  transition: box-shadow var(--transition), transform var(--transition);
  z-index: 60;
}

.whatsapp-float svg {
  fill: currentColor;
  height: 26px;
  width: 26px;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 42px rgba(18, 32, 26, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1040px) {
  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
  }

  .products-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(24, 32, 26, 0.1);
    display: none;
    gap: 18px;
    left: 0;
    padding: 22px 20px 26px;
    position: fixed;
    right: 0;
    top: 68px;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-links {
    align-items: stretch;
    display: grid;
    gap: 4px;
  }

  .nav-links a,
  nav.scrolled .nav-links a {
    color: var(--ink);
    display: block;
    padding: 12px 4px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 14px;
    width: 100%;
  }

  section {
    padding: 74px 0;
  }

  #hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0 0;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 620px) {
  .section-inner,
  .nav-inner,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, var(--max-w));
  }

  .logo-img {
    height: 44px;
    max-width: 176px;
    padding: 6px 8px;
  }

  nav.scrolled .logo-img,
  nav.menu-active .logo-img {
    height: 42px;
  }

  .footer-brand .logo-img {
    height: 52px;
    max-width: 210px;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .section-header {
    margin-bottom: 34px;
    text-align: left;
  }

  .products-grid,
  .services-grid,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-illustration {
    min-height: 280px;
    padding: 22px;
  }

  .shelf {
    left: 22px;
    right: 22px;
  }

  .shelf-two {
    left: 42px;
    right: 42px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .stat-card:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .product-card,
  .service-card,
  .contact-form {
    padding: 24px;
  }

  .info-card {
    padding: 18px;
  }

  .whatsapp-float {
    border-radius: 50%;
    bottom: 16px;
    height: 58px;
    justify-content: center;
    padding: 0;
    right: 16px;
    width: 58px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
