:root {
  --ink: #10251d;
  --muted: #5d6a63;
  --green: #0f6f49;
  --green-2: #1fb36f;
  --gold: #f2b13c;
  --cream: #fbfaf3;
  --paper: #ffffff;
  --line: #dfe7dd;
  --shadow: 0 24px 70px rgba(16, 37, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Avenir Next, Avenir, Montserrat, Arial, sans-serif;
  background: var(--cream);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 104px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 243, 0.9);
  border-bottom: 1px solid rgba(16, 37, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.brand img {
  width: clamp(178px, 22vw, 270px);
  height: auto;
}

.brand span {
  display: block;
  width: 100%;
  padding-left: clamp(52px, 6.2vw, 82px);
  color: #10251d;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #24362e;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover {
  color: var(--green);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.active {
  color: white;
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: calc(100svh - 104px);
  padding: clamp(34px, 7vw, 92px) clamp(18px, 5vw, 76px) 42px;
  overflow: hidden;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 9vw, 9.2rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 580px;
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--green);
  font-weight: 900;
}

.button.primary {
  color: white;
  background: var(--green);
}

.button.ghost {
  color: var(--green);
  background: transparent;
}

.hero-visual {
  position: relative;
  min-height: clamp(430px, 58vw, 690px);
}

.hero-visual::before {
  position: absolute;
  inset: 7% 6% 10% 9%;
  content: "";
  border: 2px solid rgba(15, 111, 73, 0.12);
  border-radius: 50%;
}

.hero-img {
  position: absolute;
  width: min(42vw, 360px);
  aspect-ratio: 1.12;
  object-fit: contain;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-img.tomato {
  top: 4%;
  right: 6%;
}

.hero-img.melon {
  bottom: 4%;
  right: 22%;
}

.hero-img.bean {
  top: 25%;
  left: 0;
}

.hero-img.pepper {
  bottom: 21%;
  right: 0;
}

.ownership,
.section,
.contact-section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 76px);
}

.ownership {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 410px);
  gap: 34px;
  align-items: center;
  color: white;
  background: #10251d;
}

.ownership h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.ownership .eyebrow {
  color: #8fe8bb;
}

.ownership img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: black;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 32px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--paper);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 900;
}

.about {
  background: white;
}

.text-columns {
  columns: 3 280px;
  column-gap: 34px;
  max-width: 1180px;
}

.text-columns p {
  break-inside: avoid;
  margin-bottom: 0;
}

.products {
  background: white;
}

.gallery {
  background: #f5f8f0;
}

.gallery .section-heading p {
  max-width: 520px;
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: white;
  background: rgba(16, 37, 29, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
}

.mission {
  color: white;
  background: #10251d;
}

.mission-panel {
  max-width: 980px;
}

.mission .eyebrow {
  color: #8fe8bb;
}

.mission h2,
.mission p {
  color: white;
}

.mission p {
  color: rgba(255, 255, 255, 0.74);
}

.filters {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  background: #f7faf5;
}

.filter {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.filter.active {
  color: white;
  background: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  background: #fbfcf8;
}

.product-card div {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.product-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.product-card.is-hidden {
  display: none;
}

.packaging {
  background: #edf5ec;
}

.packaging-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
}

.packaging-list span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  color: #163127;
  border-left: 4px solid var(--green-2);
  background: white;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.65fr);
  gap: 34px;
  align-items: start;
  background: #10251d;
}

.contact-section h2,
.contact-section p,
.contact-section strong {
  color: white;
}

.contact-section p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section strong {
  display: block;
  margin-top: 22px;
  line-height: 1.45;
}

.contact-section .eyebrow {
  color: #8fe8bb;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.contact-card a {
  color: white;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 76px);
  background: white;
  border-top: 1px solid var(--line);
}

footer img {
  width: 220px;
}

footer p {
  max-width: 620px;
  margin: 0;
  text-align: right;
  font-size: 0.92rem;
}

@media (max-width: 1050px) {
  .hero,
  .ownership,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .feature-grid,
  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packaging-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 12px;
    min-height: 142px;
  }

  .brand img {
    width: 178px;
  }

  .brand span {
    padding-left: 54px;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 142px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
    border-top: 1px solid var(--line);
  }

  .language-switcher {
    order: 3;
    justify-content: space-between;
    width: 100%;
    margin-top: 0;
    padding: 5px;
    background: white;
    box-shadow: 0 10px 28px rgba(16, 37, 29, 0.08);
  }

  .lang-btn {
    flex: 1;
    height: 38px;
    min-width: 0;
    font-size: 1.2rem;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.4rem);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-img {
    width: min(62vw, 280px);
    padding: 14px;
  }

  .hero-img.tomato {
    right: 0;
  }

  .hero-img.bean {
    left: 0;
    top: 22%;
  }

  .hero-img.pepper {
    right: 0;
    bottom: 17%;
  }

  .hero-img.melon {
    right: 18%;
  }

  .ownership img {
    max-width: 360px;
  }

  .feature-grid,
  .product-grid,
  .gallery-grid,
  .packaging-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-color: #d7e2d4;
    box-shadow: 0 14px 36px rgba(16, 37, 29, 0.08);
  }

  .product-card img {
    width: 100%;
    height: 230px;
    padding: 18px;
    object-fit: contain;
    background: #fbfcf8;
  }

  .product-card div {
    padding: 0 22px 22px;
    border-top: 0;
    background: white;
  }

  .product-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  .product-card p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .gallery {
    background: white;
  }

  .gallery-grid {
    gap: 22px;
  }

  .gallery-grid figure {
    aspect-ratio: auto;
    padding: 10px;
    border: 1px solid #d7e2d4;
    background: white;
    box-shadow: 0 14px 36px rgba(16, 37, 29, 0.08);
  }

  .gallery-grid img {
    width: 100%;
    height: 240px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
  }

  .gallery-grid figcaption {
    position: static;
    display: block;
    padding: 12px 2px 2px;
    color: var(--ink);
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
  }

  footer {
    align-items: start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}
