:root {
  --bg: white;
  /* #efefef; */
  --surface: #ffffff;
  --surface-alt: #d8cf9c;
  --accent: #1eb3aa;
  --accent-dark: #11978f;
  --text: #111111;
  --muted: #3d3d3d;
  --line: #e7e7e7;
  --placeholder: #c9c9c9;
  --placeholder-border: #9f9f9f;
  --container: 1280px;
  --shadow-soft: 0 22px 48px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  /* max-width: 100%; */
  display: block;
  margin-left: 0px;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-title {
  margin: 0 0 34px;
  text-align: center;
  color: var(--accent);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.placeholder {
  background: linear-gradient(135deg, #92ffe7, #008a7e);
  border: 2px solid var(--placeholder-border);
  color: #5f5f5f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.placeholder-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.placeholder--hero-main {
  aspect-ratio: 1 / 1;
  min-height: 420px;
  background-image: url(../../images/pict1.png);
  background-size: cover;
}

.placeholder--hero-leaf {
  aspect-ratio: 1 / 1;
  bottom: auto;
}

.placeholder--about-jar {
  aspect-ratio: 1 / 1.14;
  /* [disabled]border-bottom-left-radius: 14px; */
  /* [disabled]border-bottom-right-radius: 14px; */
  /* [disabled]border-top-right-radius: 14px; */
  /* [disabled]border-top-left-radius: 14px; */
}

.placeholder--production img {
  /* aspect-ratio: 1.55 / 1; */
}

.placeholder--news {
  aspect-ratio: 0.82 / 1;
}

.placeholder--partner {
  height: 96px;
  width: 260px;
  border-radius: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  /* rgba(239, 239, 239, 0.94); */
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 102px;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: #cfc58f;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #6d6d6d;
  padding: 4px 8px;
  border-radius: 999px;
}

.lang-switch a.is-active {
  color: #1b1b1b;
  background: rgba(30, 179, 170, 0.1);
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--accent);
  font-size: clamp(18px, 1.3vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--accent-dark);
  opacity: 0.9;
}

.hero {
  padding: 26px 0 84px;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  min-height: 700px;
}

.hero-back-olive,
.hero-back-gold {
  position: absolute;
  border-radius: 0;
}

.hero-back-olive {
  top: 88px;
  left: 34%;
  width: 58%;
  height: 76%;
  background: #6c6f29;
  opacity: 0.96;
}

.hero-back-gold {
  left: 24%;
  right: 4%;
  bottom: 24px;
  height: 66%;
  background: #deb760;
  opacity: 0.9;
}

.hero-leaf-left,
.hero-leaf-right {
  position: absolute;
  z-index: 0;
  width: clamp(180px, 20vw, 320px);
  /* opacity: 0.9; */
}

.hero-leaf-left {
  /* [disabled]left: 6%; */
  bottom: -40px;
}

.hero-leaf-right {
  right: 0;
  bottom: 130px;
  width: clamp(190px, 22vw, 360px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 520px) minmax(360px, 560px);
  justify-content: center;
  gap: 48px;
  padding-top: 158px;
  align-items: center;
}

.hero-card {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 64px 70px 58px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tags {
  margin-bottom: 28px;
  color: #202020;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.22;
  font-weight: 400;
}

.hero-title {
  margin: 0 0 28px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
  font-weight: 700;
  text-transform: lowercase;
}

.hero-subtitle {
  margin: 0 0 46px;
  font-size: clamp(26px, 2.6vw, 38px);
  color: #202020;
  font-weight: 400;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 56px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
  background: rgba(30, 179, 170, 0.08);
}

.hero-image-wrap {
  position: relative;
  box-shadow: var(--shadow-soft);
}

.hero-image-wrap .placeholder {
  min-height: 530px;
  border-style: solid;
  border-color: #bcbcbc;
}

.about {
  padding-top: 26px;
}

.about-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 12px solid #d1c589;
}

.about-layout {
  display: grid;
  gap: 0;
}

.about-row-top,
.about-row-bottom {
  display: grid;
  align-items: center;
}

.about-row-top {
  grid-template-columns: 260px 1fr;
  column-gap: 52px;
  align-items: end;
}

.about-row-bottom {
  grid-template-columns: 430px 1fr;
  column-gap: 70px;
  margin-top: -12px;
}

.about-top-jar {
  width: 100%;
  max-width: 150px;
  justify-self: end;
  transform: translate(52px, 8px);
  position: relative;
  z-index: 2;
}

.about-top-title {
  align-self: center;
}

.about-top-title h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.about-jars-strip {
  width: 100%;
  min-height: 170px;
  max-width: 430px;
  overflow: visible;
}

.about-jars-strip .placeholder {
  min-height: 170px;
  border: none;
  background: transparent;
  padding: 0;
}

.about-top-jar .placeholder {
  border: none;
  background: transparent;
  padding: 0;
  aspect-ratio: auto;
}

.about-top-jar img,
.about-jars-strip img {
  display: block;
  /* width: 100%; */
  height: auto;
}

.about-single-jar {
  display: block;
}

.jar-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jar-cap {
  height: 24px;
  border: 6px solid var(--accent);
  border-bottom-width: 4px;
  border-radius: 8px;
  background: transparent;
}

.jar-body {
  border: 6px solid var(--accent);
  border-radius: 10px;
  padding: 8px;
  background: transparent;
}

.jar-body .placeholder {
  min-height: 96px;
  border-radius: 4px;
  border-width: 1px;
  border-style: dashed;
}

.about-content {
  align-self: center;
  max-width: 560px;
}

.about-content strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.22;
}

.about-content p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  color: #2c2c2c;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 84px 72px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.feature-item {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-art {
  position: relative;
  /* [disabled]width: 100%; */
  max-width: 300px;
  min-height: 250px;
  display: flex;
  align-items: left;
  justify-content: left;
  opacity: 0.5;
  margin-left: -180px;
  margin-top: -40px;
}

.feature-art .placeholder {
  width: 100%;
  min-height: 250px;
  border: none;
  background: transparent;
  color: #8fdcd8;
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  padding: 16px;
}

.feature-text {
  position: absolute;
  z-index: 2;
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: 1.25;
  font-weight: 700;
  max-width: 220px;
  color: #111111;
}

.feature-item:nth-child(1) .feature-text {
  right: 10px;
  top: 34px;
}

.feature-item:nth-child(2) .feature-text {
  right: -8px;
  top: 28px;
}

.feature-item:nth-child(3) .feature-text {
  right: -4px;
  top: 66px;
}

.feature-item:nth-child(4) .feature-text {
  right: 8px;
  top: 66px;
}

.feature-item:nth-child(5) .feature-text {
  right: 4px;
  top: 72px;
}

.feature-item:nth-child(6) .feature-text {
  right: -2px;
  top: 76px;
}

.production-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  /* box-shadow: var(--shadow-card); */
}

.production-grid img {
  object-fit: contain;
}

.production-grid .placeholder {
  min-height: 280px;
}

.news-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: transparent;
}

.news-thumb {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.news-thumb .placeholder {
  min-height: 430px;
  border-style: solid;
  border-width: 1px;
}

.news-overlay {
  position: absolute;
  inset: auto 24px 18px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.news-title {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.16;
  font-weight: 400;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  font-size: 18px;
  flex-wrap: wrap;
}

.news-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: inherit;
  line-height: 1;
}

.news-like {
  cursor: pointer;
}

.partners-row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.partners-row .placeholder {
  flex: 1 1 240px;
  max-width: 300px;
}

.contact {
  padding-top: 34px;
  padding-bottom: 16px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
}

.contact-left {
  background: #d5cb98;
  padding: 82px 74px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-left h2 {
  margin: 0 0 42px;
  font-size: clamp(44px, 4vw, 66px);
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.contact-left p {
  max-width: 470px;
  margin: 0 0 42px;
  font-size: clamp(24px, 1.95vw, 30px);
  line-height: 1.5;
}

.contact-list {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 420px;
  text-align: left;
}

.contact-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  font-size: clamp(24px, 1.8vw, 28px);
}

.contact-icon {
  font-size: 42px;
  line-height: 1;
  text-align: center;
}

.contact-right {
  background: #21b4ad;
  padding: 82px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 500px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.36);
  color: #ffffff;
  padding: 16px 18px;
  outline: none;
  font-size: 22px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form .full {
  margin-bottom: 18px;
}

.contact-form textarea {
  min-height: 192px;
  resize: vertical;
  margin-bottom: 34px;
}

.submit-wrap {
  text-align: center;
}

.contact-form button {
  min-width: 220px;
  min-height: 56px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.contact-form button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 18px 0 34px;
  color: #6b6b6b;
  font-size: 15px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #dcdcdc;
  padding-top: 18px;
}

@media (max-width: 1180px) {
  .hero-stage {
    min-height: 640px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 150px;
  }

  .hero-card {
    padding: 48px 42px;
  }

  .contact-shell {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    gap: 56px 36px;
  }

  .feature-art {
    max-width: 260px;
    min-height: 220px;
  }

  .feature-art .placeholder {
    min-height: 220px;
  }

  .feature-text {
    max-width: 190px;
    font-size: clamp(15px, 1.3vw, 20px);
  }

  .contact-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .header-right {
    align-items: stretch;
  }

  .lang-switch {
    align-self: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: flex-end;
  }

  .nav-list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: min(360px, calc(100vw - 40px));
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list.is-open {
    display: flex;
  }

  .hero-stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-back-olive,
  .hero-back-gold,
  .hero-leaf-left,
  .hero-leaf-right {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 22px;
    gap: 18px;
  }

  .hero-card,
  .hero-image-wrap {
    width: 100%;
  }

  .hero-card,
  .hero-image-wrap .placeholder {
    min-height: auto;
  }

  .hero-card {
    order: 2;
  }

  .hero-image-wrap {
    order: 1;
  }

  .about-shell {
    border-bottom-width: 8px;
  }

  .about-row-top {
    grid-template-columns: max-content max-content;
    justify-content: center;
    column-gap: 18px;
    align-items: end;
  }

  .about-row-bottom {
    grid-template-columns: 1fr;
    row-gap: 24px;
    margin-top: -6px;
  }

  .about-top-jar {
    width: 150px;
    max-width: none;
    justify-self: auto;
    transform: translate(0, 6px);
    flex: 0 0 150px;
  }

  .about-top-title {
    justify-self: start;
  }

  .about-jars-strip {
    max-width: 430px;
    margin: 0 auto;
  }

  .about-content {
    max-width: 560px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item:nth-child(n) .feature-text {
    right: 8px;
    top: 52px;
  }

  .production-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .news-title {
    font-size: 24px;
  }

  .partners-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .logo {
    font-size: 34px;
  }

  .lang-switch {
    gap: 4px;
    padding: 6px 10px;
  }

  .lang-switch a {
    font-size: 13px;
  }

  .nav-list a {
    font-size: 16px;
  }

  .hero {
    padding: 12px 0 42px;
  }

  .hero-stage {
    gap: 14px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-card {
    padding: 24px 18px 26px;
  }

  .hero-tags {
    font-size: 16px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .hero-btn {
    min-width: 148px;
    min-height: 48px;
    font-size: 18px;
  }

  .hero-image-wrap .placeholder {
    min-height: 260px;
  }

  .about-row-top {
    grid-template-columns: max-content max-content;
    justify-content: center;
    column-gap: 14px;
    align-items: end;
  }

  .about-top-jar {
    width: 150px;
    max-width: none;
    transform: translate(0, 6px);
    flex: 0 0 150px;
    padding-bottom: 15px;
  }

  .about-top-title h2 {
    font-size: 34px;
    white-space: nowrap;
  }

  .about-jars-strip {
    min-height: 120px;
    max-width: 100%;
  }

  .about-jars-strip .placeholder {
    min-height: 120px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content strong,
  .about-content p,
  .feature-text,
  .contact-left p,
  .contact-row,
  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-item {
    min-height: 200px;
  }

  .feature-art {
    max-width: 280px;
    min-height: 200px;
  }

  .feature-art .placeholder {
    min-height: 200px;
  }

  .feature-item:nth-child(n) .feature-text {
    right: 12px;
    top: 50px;
    max-width: 180px;
    font-size: 16px;
  }

  .production-grid .placeholder {
    min-height: 180px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-thumb .placeholder {
    min-height: 300px;
  }

  .news-overlay {
    inset: auto 16px 14px 16px;
    gap: 12px;
  }

  .news-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .news-meta {
    font-size: 15px;
    padding-top: 12px;
  }

  .contact-left,
  .contact-right {
    padding: 40px 22px;
  }

  .contact-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .placeholder--partner {
    width: 100%;
    max-width: 260px;
    height: 84px;
  }
}

.site-header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .main-nav {
    justify-content: flex-end;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
  }

  .nav-list {
    z-index: 2;
  }
}
