:root {
  --orange: #e86a17;
  --orange-hover: #d45d10;
  --green: #1f5c3a;
  --green-dark: #17482d;
  --ink: #1c1f24;
  --muted: #66707c;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --content: 1180px;
  --font: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(252 252 252);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  gap: 1.1rem;
}

.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--ink);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-btn span {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(48vh, 427px);
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 20, 24, 0.78) 0%,
      rgba(16, 20, 24, 0.55) 28%,
      rgba(16, 20, 24, 0.18) 48%,
      rgba(16, 20, 24, 0) 62%
    ),
    url("assets/antarctic-carrots-hero-01.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto 3rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 10ch;
}

.hero p {
  margin-top: 0.9rem;
  max-width: 34ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-badges svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fff;
}

.products,
.why-order,
.offers,
.farm,
.sustainability,
.careers,
.investors {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
}

.products {
  padding: 4rem 0 3rem;
}

.products h2,
.why h2,
.order h2,
.farm-copy h2,
.sustainability h2,
.careers-banner h2,
.investors-banner h2,
.footer-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.product-card .body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.product-card h3 {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card .meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card .price {
  margin: 0.55rem 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.product-card .btn {
  width: 100%;
  margin-top: auto;
}

.why-order {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.25rem;
  padding-bottom: 3rem;
  align-items: stretch;
}

.why,
.order {
  border: 1px solid var(--line);
  padding: 1.5rem;
  background: #fff;
}

.why-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff3ea;
  color: var(--orange);
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.why h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.why p {
  color: var(--muted);
  font-size: 0.92rem;
}

.order-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  margin-top: 1.1rem;
  align-items: stretch;
}

.order-fields {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field > span,
.freq legend {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.field select,
.field input[type="text"],
.qty input {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.7rem 0.8rem;
  width: 100%;
}

.qty {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  border: 1px solid var(--line);
}

.qty button {
  border: 0;
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 1.1rem;
}

.qty input {
  border: 0;
  text-align: center;
  -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.freq {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.freq label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.order-summary {
  border-left: 1px solid var(--line);
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.9rem;
}

.order-summary dl {
  display: grid;
  gap: 0.55rem;
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.order-summary .total {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
}

.offers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 3.5rem;
}

.offer {
  min-height: 180px;
  padding: 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.offer h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer p {
  margin-top: 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
}

.offer-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
}

.offer-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.offer-photo div {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.offer-photo p {
  color: #fff;
}

.farm {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 1.5rem;
  padding-bottom: 3.5rem;
  align-items: start;
}

.farm-copy p {
  margin-top: 0.9rem;
  color: var(--muted);
  max-width: 42ch;
}

.farm-stats {
  margin: 1.4rem 0 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.farm-stats dt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.farm-stats dd {
  font-weight: 700;
  font-size: 1.05rem;
}

.farm-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-template-rows: 1.2fr 0.9fr;
  gap: 0.65rem;
  min-height: 420px;
}

.farm-main {
  grid-row: 1 / span 1;
  grid-column: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farm-gallery > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farm-map {
  background:
    radial-gradient(circle at 60% 55%, #ffd7b8 0 8px, transparent 9px),
    linear-gradient(160deg, #f3f5f7, #dfe5ea);
  border: 1px solid var(--line);
  position: relative;
  min-height: 120px;
}

.farm-map .pin {
  position: absolute;
  left: 58%;
  top: 52%;
  transform: translate(-50%, -120%);
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  white-space: nowrap;
}

.sustainability {
  padding-bottom: 3.5rem;
}

.sustainability h2 {
  margin-bottom: 1.5rem;
}

.sustain-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.sustain-grid li {
  border: 1px solid var(--line);
  padding: 1.15rem;
  min-height: 140px;
}

.sustain-grid h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.45rem;
}

.sustain-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.careers {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 1rem;
  padding-bottom: 3.5rem;
}

.careers-banner,
.investors-banner {
  background: var(--green);
  color: #fff;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.careers-banner p,
.investors-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 34ch;
}

.jobs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.jobs article {
  border: 1px solid var(--line);
  padding: 1.1rem;
  background: #fff;
}

.jobs h3 {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jobs .meta {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.35rem 0 0.65rem;
}

.jobs p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.jobs a {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.investors {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.8fr;
  gap: 1rem;
  padding-bottom: 3.5rem;
}

.investors-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.investors-data {
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: #fff;
}

.kpis {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.kpis strong {
  display: block;
  font-size: 1.35rem;
  color: var(--green);
}

.chart h3 {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  align-items: end;
  height: 160px;
  background: var(--green-dark);
  padding: 1rem 0.85rem 0.5rem;
}

.bars div {
  height: var(--h);
  background: #6dbf8c;
  position: relative;
  min-height: 12px;
}

.bars span {
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.68rem;
}

.docs {
  list-style: none;
  border: 1px solid var(--line);
  background: #fff;
}

.docs a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs li:last-child a {
  border-bottom: 0;
}

.docs span {
  color: var(--orange);
}

.footer-cta {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
  margin-bottom: 0;
}

.footer-cta-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.7), rgba(16, 20, 24, 0.25)),
    url("assets/cta.jpg") center / cover no-repeat;
}

.footer-cta-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
  color: #fff;
  padding: 2.5rem 0;
}

.site-footer {
  background: var(--bg-soft);
  padding: 2.5rem max(1rem, calc((100% - var(--content)) / 2)) 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 2rem;
}

.footer-brand .logo {
  margin-bottom: 0.65rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
}

.social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.footer-cols h3 {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-cols a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-bottom a {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .product-grid,
  .offers,
  .sustain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-order,
  .farm,
  .careers,
  .investors,
  .order-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .farm-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .farm-main {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .order-summary {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1rem;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .offers,
  .why-grid,
  .jobs,
  .sustain-grid,
  .kpis,
  .footer-cols {
    grid-template-columns: 1fr;
  }
}
