:root {
  --purple: #2d1d8e;
  --purple-dark: #201362;
  --pink: #d30a73;
  --orange: #ff5929;
  --green: #78cf2b;
  --cream: #f7f2e8;
  --ink: #17151d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--pink); color: white; }

.topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 38px; padding: 0 clamp(22px, 4.5vw, 72px); background: var(--purple-dark); color: white; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.topbar-center { color: #c8bdff; }
.topbar a { justify-self: end; }

.site-header { position: relative; z-index: 20; display: flex; height: 96px; align-items: center; justify-content: space-between; padding: 0 clamp(22px, 4.5vw, 72px); background: white; border-bottom: 1px solid #e8e4db; }
.logo { width: 145px; height: 84px; overflow: hidden; }
.logo img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); color: #514d58; font-size: 12px; font-weight: 700; }
.main-nav > a:not(.header-cta) { transition: color .2s ease; }
.main-nav > a:not(.header-cta):hover { color: var(--pink); }
.header-cta { padding: 15px 20px; background: var(--purple); color: white; border-radius: 100px; }
.menu-button { display: none; }

.hero { display: grid; min-height: 760px; grid-template-columns: 1.15fr .85fr; background: var(--cream); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 88px clamp(30px, 7vw, 110px) 64px; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: var(--purple); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(120,207,43,.15); }
.hero h1 { margin: 40px 0 34px; font-size: clamp(72px, 9.3vw, 146px); font-weight: 800; letter-spacing: -.085em; line-height: .78; }
.hero h1 em, .intro h2 em, .fleet-copy h2 em, .contact h2 em { color: var(--pink); font-family: Georgia, serif; font-weight: 400; }
.hero-copy > p { max-width: 620px; margin: 0; color: #5d5864; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin: 40px 0 58px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 34px; padding: 0 24px; border: 1px solid var(--purple); border-radius: 100px; font-size: 12px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--purple); color: white; }
.button.secondary { background: transparent; color: var(--purple); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; border-top: 1px solid #d9d4ca; padding-top: 26px; }
.hero-proof div { display: flex; flex-direction: column; gap: 7px; }
.hero-proof strong { color: var(--purple); font-size: 18px; }
.hero-proof span { color: #77717b; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.hero-image { position: relative; overflow: hidden; min-height: 760px; background: var(--purple); }
.hero-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,9,49,.7)); content: ''; }
.hero-image > img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.image-note { position: absolute; z-index: 2; right: 38px; bottom: 38px; display: flex; flex-direction: column; color: white; text-align: right; }
.image-note span { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.image-note strong { font-family: Georgia, serif; font-size: 38px; font-style: italic; font-weight: 400; }

.marquee { overflow: hidden; background: var(--orange); color: white; padding: 20px 0; white-space: nowrap; }
.marquee div { width: max-content; animation: marquee 22s linear infinite; }
.marquee span { padding: 0 34px; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.marquee b { color: var(--purple-dark); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-tag { display: flex; gap: 12px; color: #77717b; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-tag span { color: var(--pink); }
.section-tag.light { color: #c9c1e5; }
.section-tag.light span { color: var(--green); }
.intro { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; padding: 130px clamp(24px, 7vw, 110px); background: white; }
.intro h2 { margin: 0; font-size: clamp(50px, 7.5vw, 110px); letter-spacing: -.07em; line-height: .9; }
.intro-body { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; max-width: 830px; margin: 70px 0 0 auto; }
.intro-body p { margin: 0; color: #605b65; font-size: 16px; line-height: 1.75; }

.products { padding: 130px clamp(24px, 7vw, 110px); background: var(--purple-dark); color: white; }
.products-heading { display: grid; grid-template-columns: .8fr 2fr 1fr; gap: 38px; align-items: end; margin-bottom: 70px; }
.products-heading h2 { margin: 0; font-size: clamp(48px, 6.6vw, 94px); letter-spacing: -.065em; line-height: .92; }
.products-heading > p { margin: 0; color: #c9c1e5; font-size: 15px; line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.product-card { position: relative; min-height: 440px; overflow: hidden; padding: 28px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.product-card h3 { position: relative; z-index: 2; margin: 210px 0 15px; font-size: 29px; letter-spacing: -.035em; }
.product-card p { position: relative; z-index: 2; margin: 0; color: #c9c1e5; font-size: 13px; line-height: 1.65; }
.product-number { color: var(--green); font-size: 10px; letter-spacing: .12em; }
.produce-shape { position: absolute; top: 75px; right: -10px; width: 190px; height: 155px; border-radius: 50% 45% 52% 48%; transform: rotate(-18deg); opacity: .95; }
.produce-shape::after { position: absolute; top: -25px; left: 88px; width: 36px; height: 58px; border-radius: 80% 10% 80% 10%; background: var(--green); content: ''; transform: rotate(20deg); }
.fruit .produce-shape { background: var(--pink); }
.veg .produce-shape { background: var(--orange); border-radius: 20% 80% 24% 76%; transform: rotate(18deg); }
.herb .produce-shape { background: #67b42a; border-radius: 80% 10% 80% 10%; }
.more .produce-shape { background: #5b49c9; border-radius: 22%; }
.catalogue-link { display: inline-flex; gap: 18px; margin-top: 42px; padding-bottom: 6px; border-bottom: 1px solid var(--green); color: var(--green); font-size: 13px; font-weight: 700; }

.fleet { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 720px; background: white; }
.fleet-image { overflow: hidden; }
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }
.fleet-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(36px, 7vw, 110px); }
.fleet-copy h2 { margin: 48px 0 32px; font-size: clamp(52px, 6.5vw, 92px); letter-spacing: -.07em; line-height: .9; }
.fleet-copy > p { max-width: 550px; margin: 0; color: #625d65; font-size: 17px; line-height: 1.7; }
.fleet-address { display: flex; gap: 48px; margin-top: 58px; padding-top: 26px; border-top: 1px solid #ded9d0; }
.fleet-address span { color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.fleet-address strong { color: var(--purple); font-size: 14px; line-height: 1.6; }

.benefits { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; padding: 120px clamp(24px, 7vw, 110px); background: var(--cream); }
.benefit-list { border-top: 1px solid #d6d0c6; }
.benefit-list article { display: grid; grid-template-columns: 70px 1fr 1.2fr; gap: 30px; align-items: center; min-height: 150px; border-bottom: 1px solid #d6d0c6; }
.benefit-list article > span { color: var(--pink); font-size: 11px; }
.benefit-list h3 { margin: 0; color: var(--purple); font-size: clamp(28px, 3vw, 44px); letter-spacing: -.04em; }
.benefit-list p { margin: 0; color: #68636c; font-size: 14px; line-height: 1.65; }

.coast { position: relative; min-height: 700px; overflow: hidden; background: var(--purple); }
.coast::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,19,98,.86), rgba(31,19,98,.06)); content: ''; }
.coast img { width: 100%; height: 700px; object-fit: cover; image-rendering: auto; }
.coast-copy { position: absolute; z-index: 2; top: 50%; left: clamp(24px, 7vw, 110px); color: white; transform: translateY(-50%); }
.coast-copy > span { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.coast h2 { margin: 32px 0 0; font-size: clamp(58px, 8vw, 118px); letter-spacing: -.075em; line-height: .86; }

.testimonial { padding: 130px clamp(24px, 7vw, 110px); background: var(--pink); color: white; }
.testimonial blockquote { max-width: 1100px; margin: 70px 0 36px; font-family: Georgia, serif; font-size: clamp(42px, 6.7vw, 92px); font-style: italic; line-height: 1.04; }
.testimonial > p { margin: 0; color: #ffd2e8; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.contact { display: grid; grid-template-columns: 1.8fr 1fr; gap: 100px; padding: 130px clamp(24px, 7vw, 110px); background: white; }
.contact h2 { margin: 52px 0 46px; font-size: clamp(54px, 7.6vw, 112px); letter-spacing: -.075em; line-height: .88; }
.contact-actions { display: flex; gap: 12px; }
.contact-whatsapp { color: var(--purple); }
.contact-details { display: flex; flex-direction: column; justify-content: flex-end; }
.contact-details > div { padding: 24px 0; border-bottom: 1px solid #ded9d0; }
.contact-details span { display: block; margin-bottom: 12px; color: var(--pink); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-details a, .contact-details p { margin: 0; color: var(--purple); font-size: 15px; font-weight: 700; line-height: 1.6; }

footer { display: grid; grid-template-columns: 1fr auto auto auto; gap: 48px; align-items: center; padding: 38px clamp(24px, 4.5vw, 72px); background: var(--purple-dark); color: #c9c1e5; font-size: 10px; }
.footer-logo { width: 105px; height: 64px; padding: 5px; background: white; border-radius: 3px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.socials { display: flex; gap: 20px; color: white; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 34px; padding-right: 34px; }
  .hero h1 { font-size: 86px; }
  .products-heading { grid-template-columns: 1fr 2fr; }
  .products-heading > p { grid-column: 2; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .contact { gap: 50px; }
}

@media (max-width: 760px) {
  .topbar { grid-template-columns: 1fr auto; }
  .topbar-center { display: none; }
  .site-header { height: 84px; padding: 0 20px; }
  .logo { width: 118px; height: 74px; }
  .menu-button { display: block; border: 0; background: none; color: var(--purple); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .main-nav { position: absolute; top: 84px; left: 0; display: none; width: 100%; align-items: stretch; flex-direction: column; gap: 0; padding: 14px 22px 26px; background: white; border-bottom: 1px solid #ddd; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .header-cta { margin-top: 8px; text-align: center; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 22px 55px; }
  .hero h1 { font-size: clamp(68px, 22vw, 94px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-proof { gap: 12px; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof span { font-size: 8px; }
  .hero-image { min-height: 620px; }
  .intro, .benefits { grid-template-columns: 1fr; gap: 52px; padding-top: 88px; padding-bottom: 88px; }
  .intro-body { grid-template-columns: 1fr; gap: 25px; margin-top: 45px; }
  .products { padding-top: 88px; padding-bottom: 88px; }
  .products-heading { grid-template-columns: 1fr; }
  .products-heading > p { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 390px; }
  .fleet { grid-template-columns: 1fr; }
  .fleet-image { min-height: 460px; }
  .fleet-copy { padding: 80px 22px; }
  .benefit-list article { grid-template-columns: 42px 1fr; gap: 16px; padding: 26px 0; }
  .benefit-list p { grid-column: 2; }
  .coast { min-height: 580px; }
  .coast img { height: 580px; }
  .testimonial { padding-top: 90px; padding-bottom: 90px; }
  .contact { grid-template-columns: 1fr; gap: 70px; padding-top: 90px; padding-bottom: 90px; }
  .contact-actions { flex-direction: column; }
  footer { grid-template-columns: 1fr; justify-items: start; gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
}
