:root {
  --mauve: #7b666c;
  --green: #82b13f;
  --red: #d2464f;
  --black: #000000;
  --white: #ffffff;
  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 20px 55px rgba(0, 0, 0, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Lito", Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 102, 108, .18);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 245px; }
.brand img { width: 78px; height: 56px; object-fit: contain; object-position: left center; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 28px; letter-spacing: -.04em; }
.brand-aix { color: var(--mauve); }
.brand-fruit { color: var(--green); }
.brand-copy small { margin-top: 8px; color: var(--mauve); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 800; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px; height: 2px;
  background: var(--green);
  transition: right .2s ease;
}
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta, .button-primary {
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(130,177,63,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover, .button-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(130,177,63,.32); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; border-radius: 99px; background: var(--black); }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 15%, rgba(130,177,63,.12), transparent 30%),
    var(--white);
}
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 49% 51%; align-items: center; }
.hero-copy { position: relative; z-index: 3; padding: 90px 30px 90px 0; }
.eyebrow { margin: 0 0 14px; color: var(--mauve); font-size: 13px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.04; letter-spacing: -.035em; }
h1 { margin-bottom: 22px; max-width: 760px; font-size: clamp(46px, 5.4vw, 76px); }
h1 span { color: var(--green); }
h2 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 22px; }
h3 { font-size: 24px; }
.hero-lead { max-width: 580px; margin: 0 0 30px; font-size: 20px; color: var(--mauve); }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; font-weight: 900; }
.button-outline { color: var(--green); border: 2px solid var(--green); border-radius: 999px; margin-top: 20px; }
.button-outline:hover { background: var(--green); color: var(--white); }
.text-link { font-weight: 900; border-bottom: 2px solid var(--mauve); }
.benefits { display: flex; gap: 28px; margin-top: 42px; flex-wrap: wrap; color: var(--mauve); font-weight: 800; font-size: 14px; }
.benefits > div { display: flex; align-items: center; gap: 9px; }
.benefit-icon { color: var(--green); font-size: 20px; }
.hero-visual { position: absolute; inset: 0 0 0 48%; z-index: 1; overflow: hidden; border-bottom-left-radius: 80px; }
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,.72) 9%, rgba(255,255,255,0) 27%); }
.hero-visual img { height: 100%; object-fit: cover; object-position: 55% center; }
.hero-card { position: absolute; z-index: 2; right: 34px; top: 95px; max-width: 220px; transform: rotate(-3deg); padding: 22px 24px; border-radius: 26px; background: var(--mauve); color: var(--white); font-size: 24px; font-weight: 900; line-height: 1.1; box-shadow: var(--shadow); }

.section { padding: 105px 0; }
.split-grid, .about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.content-block p { max-width: 640px; }
.content-block > p:not(.eyebrow) { font-size: 18px; color: var(--mauve); }
.lead-copy { color: var(--black) !important; font-size: 22px !important; font-weight: 800; }
.image-card { position: relative; margin: 0; min-height: 430px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.image-card img { height: 100%; min-height: 430px; object-fit: cover; }
.image-card figcaption { position: absolute; right: 24px; top: 24px; width: 220px; padding: 20px; border-radius: 50%; background: var(--green); color: var(--white); text-align: center; font-size: 22px; font-weight: 900; transform: rotate(-4deg); }

.service-section { background: rgba(123,102,108,.055); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 42px; }
.service-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.07); border: 1px solid rgba(123,102,108,.12); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 50px rgba(0,0,0,.12); }
.service-image { aspect-ratio: 1.35 / 1; overflow: hidden; }
.service-image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-body { padding: 26px 24px 30px; }
.service-number { color: var(--red); font-weight: 900; font-size: 13px; letter-spacing: .14em; margin-bottom: 10px; }
.service-card h3 { font-size: 24px; min-height: 76px; margin-bottom: 14px; }
.service-card p { margin: 0; color: var(--mauve); }

.about-section { overflow: hidden; }
.about-grid { grid-template-columns: 1.05fr .95fr; }
.about-collage { position: relative; min-height: 560px; }
.about-main { position: absolute; inset: 0 90px 48px 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-small { position: absolute; right: 0; bottom: 0; width: 240px; height: 230px; border: 12px solid var(--white); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.about-small img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; top: 28px; right: 6px; width: 170px; height: 170px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--green); color: var(--white); font-size: 22px; font-weight: 900; line-height: 1.1; transform: rotate(5deg); box-shadow: var(--shadow); }
.photo-note { margin-top: 26px; padding: 18px 20px; border-left: 5px solid var(--red); background: rgba(210,70,79,.08); border-radius: 0 16px 16px 0; display: grid; gap: 4px; }
.photo-note strong { color: var(--red); }
.photo-note span { color: var(--mauve); font-size: 14px; }

.produce-gallery { display: grid; grid-template-columns: repeat(4, 1fr); }
.produce-gallery figure { position: relative; margin: 0; min-height: 245px; overflow: hidden; }
.produce-gallery img { height: 100%; min-height: 245px; object-fit: cover; transform: scale(1.02); }
.produce-gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.38)); }
.produce-gallery figcaption { position: absolute; z-index: 2; left: 24px; bottom: 22px; color: var(--white); font-size: clamp(20px, 2.3vw, 32px); line-height: 1.05; font-weight: 900; text-shadow: 0 3px 14px rgba(0,0,0,.25); }

.contact-section { padding: 78px 0; }
.contact-box { border-radius: var(--radius-lg); padding: 52px 58px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; background: var(--green); color: var(--white); position: relative; overflow: hidden; }
.contact-box::after { content: ""; position: absolute; width: 280px; height: 280px; border: 32px solid rgba(255,255,255,.11); border-radius: 50%; right: -80px; top: -130px; }
.contact-box .eyebrow, .contact-box p { color: var(--white); }
.contact-box h2 { margin-bottom: 16px; max-width: 780px; font-size: clamp(34px, 3vw, 46px); }
.contact-box p { margin: 0; max-width: 720px; }
.contact-mail { position: relative; z-index: 2; min-width: 290px; min-height: 64px; padding: 16px 24px; border-radius: 999px; background: var(--red); display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--white); font-weight: 900; font-size: 19px; box-shadow: 0 16px 30px rgba(0,0,0,.12); }
.mail-icon { font-size: 22px; }

.site-footer { border-top: 1px solid rgba(123,102,108,.16); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .8fr 1fr; gap: 42px; padding: 64px 0 54px; }
.brand-footer { min-width: 0; }
.footer-brand p, .footer-info p { color: var(--mauve); font-size: 14px; }
.footer-links, .footer-info { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links h3, .footer-info h3 { margin-bottom: 6px; font-size: 16px; }
.footer-links a, .footer-info a { font-weight: 800; font-size: 14px; }
.footer-links a:hover, .footer-info a:hover { color: var(--green); }
.footer-bottom { background: var(--mauve); color: var(--white); }
.footer-bottom-inner { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; }
.footer-bottom a { font-weight: 900; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 55% 45%; }
  .hero-visual { left: 54%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card h3 { min-height: 0; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 76px; }
  .brand { min-width: 0; }
  .brand img { width: 60px; height: 46px; }
  .brand-copy strong { font-size: 23px; }
  .menu-toggle { display: block; z-index: 3; }
  .main-nav {
    position: fixed;
    left: 20px; right: 20px; top: 84px;
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { text-align: center; }
  .hero { min-height: auto; padding-top: 0; }
  .hero-visual { position: relative; inset: auto; height: 390px; border-bottom-left-radius: 0; }
  .hero-visual::before { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.15)); }
  .hero-card { right: 22px; top: 26px; font-size: 20px; }
  .hero-grid { min-height: 0; display: block; }
  .hero-copy { padding: 56px 0 70px; }
  h1 { font-size: clamp(44px, 12vw, 64px); }
  .split-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .intro-section .content-block { order: 2; }
  .image-card { min-height: 360px; }
  .image-card img { min-height: 360px; }
  .about-collage { min-height: 500px; }
  .produce-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-box { grid-template-columns: 1fr; padding: 42px 30px; }
  .contact-mail { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-copy small { display: none; }
  .hero-visual { height: 320px; }
  .hero-card { display: none; }
  .hero-copy { padding-top: 44px; }
  .hero-lead { font-size: 18px; }
  .benefits { gap: 14px; flex-direction: column; }
  .section { padding: 72px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .image-card figcaption { width: 170px; font-size: 18px; }
  .about-main { right: 45px; bottom: 70px; }
  .about-small { width: 180px; height: 180px; border-width: 8px; }
  .about-badge { width: 125px; height: 125px; font-size: 17px; right: 0; }
  .produce-gallery { grid-template-columns: 1fr; }
  .produce-gallery figure { min-height: 210px; }
  .contact-mail { width: 100%; min-width: 0; font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { min-height: 74px; flex-direction: column; justify-content: center; align-items: flex-start; }
}
