:root {
  --leaf: #164b35;
  --leaf-deep: #0b2c21;
  --apple: #c93632;
  --apple-dark: #8e201f;
  --gold: #e3b34b;
  --lime: #a5c65f;
  --cream: #f7f2e8;
  --paper: #fffaf1;
  --ink: #18211c;
  --muted: #6d766f;
  --line: rgba(24, 33, 28, 0.14);
  --shadow: 0 24px 80px rgba(15, 40, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
}

body.is-ready .hero-content {
  animation: heroCopyIn 900ms ease both;
}

body.is-ready .hero-stats article {
  animation: statRise 720ms ease both;
}

body.is-ready .hero-stats article:nth-child(2) {
  animation-delay: 110ms;
}

body.is-ready .hero-stats article:nth-child(3) {
  animation-delay: 220ms;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(10, 30, 22, 0.34);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 16px 42px rgba(16, 41, 29, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: var(--apple);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  opacity: 0.82;
}

.main-nav a:hover {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-width: 156px;
  padding: 0 18px;
  color: #fff;
  background: var(--apple);
}

.button {
  padding: 0 24px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--apple);
  box-shadow: 0 18px 36px rgba(145, 32, 30, 0.24);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  align-items: end;
  padding: 148px max(24px, calc((100vw - 1180px) / 2)) 30px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 21, 15, 0.82), rgba(7, 21, 15, 0.42) 48%, rgba(7, 21, 15, 0.15)),
    url("images/image-12-08-26-12-59-5.jpeg") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.14), transparent 28%);
  opacity: 0.6;
  animation: softSunMove 8s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -14vw;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(201, 54, 50, 0.18);
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(247, 242, 232, 0), var(--paper) 98%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-bottom: 72px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.12;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stats article {
  min-height: 132px;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--apple-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.section-pad {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 780px;
}

.section-heading.wide {
  max-width: 930px;
}

.section-heading p:not(.eyebrow),
.intro-grid,
.production-content p,
.quality-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.intro-grid {
  display: grid;
  gap: 24px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: var(--leaf);
}

.proof-item {
  min-height: 260px;
  padding: 52px max(24px, calc((100vw - 1180px) / 2 / 3));
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease, transform 220ms ease;
}

.proof-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.proof-item span {
  display: block;
  margin-bottom: 32px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.proof-item strong {
  display: block;
  margin-bottom: 14px;
  font-size: 25px;
}

.proof-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.variety-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 44px rgba(24, 33, 28, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.variety-card:hover {
  transform: translateY(-8px);
  filter: saturate(1.08);
  box-shadow: 0 28px 70px rgba(24, 33, 28, 0.18);
}

.variety-card.red {
  background-image: linear-gradient(180deg, rgba(43, 10, 9, 0.1), rgba(43, 10, 9, 0.78)), url("images/image-12-08-26-12-59-3.jpeg");
}

.variety-card.green {
  background-image: linear-gradient(180deg, rgba(12, 41, 26, 0.08), rgba(12, 41, 26, 0.78)), url("images/image-12-08-26-12-59-5.jpeg");
}

.variety-card.gold {
  background-image: linear-gradient(180deg, rgba(59, 42, 8, 0.08), rgba(59, 42, 8, 0.78)), url("images/image-12-08-26-12-58.jpeg");
}

.variety-card.ruby {
  background-image: linear-gradient(180deg, rgba(63, 11, 16, 0.1), rgba(63, 11, 16, 0.78)), url("images/image-12-08-26-12-59.jpeg");
}

.variety-card span {
  display: inline-flex;
  margin-bottom: 150px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.variety-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.production {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--cream);
}

.production-media {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(12, 34, 25, 0.05), rgba(12, 34, 25, 0.18)),
    url("images/image-12-08-26-12-58.png") center / cover;
}

.production-content {
  align-self: center;
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 80px 70px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.5;
}

.feature-list span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--apple);
  box-shadow: 0 0 0 6px rgba(201, 54, 50, 0.12);
}

.quality {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.quality-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quality-metrics article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  transition: transform 220ms ease, background 220ms ease;
}

.quality-metrics article:hover {
  background: #fffdf8;
  transform: translateY(-5px);
}

.quality-metrics strong {
  display: block;
  margin-bottom: 18px;
  color: var(--leaf);
  font-size: 46px;
  line-height: 1;
}

.quality-metrics span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.partners {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(247, 242, 232, 0.98)),
    url("images/image-12-08-26-12-58.jpeg") center / cover;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.partner-logo {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(22, 75, 53, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(15, 40, 28, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-logo:hover {
  border-color: rgba(201, 54, 50, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(15, 40, 28, 0.15);
}

.partner-logo img,
.partner-logo span {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
}

.partner-logo img {
  object-fit: contain;
}

.partner-logo span {
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.partner-logo strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.1;
}

.magnet-logo img {
  width: 96px;
  height: 44px;
}

.pyaterochka-logo img {
  width: 98px;
  height: 52px;
}

.juice-logo span {
  background: linear-gradient(135deg, #f0b429, #c93632);
}

.wholesale-logo span {
  background: linear-gradient(135deg, var(--leaf), #6b9e3f);
}

.partner-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(22, 75, 53, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(15, 40, 28, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.partner-card:hover {
  border-color: rgba(201, 54, 50, 0.32);
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(15, 40, 28, 0.17);
}

.partner-card span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--apple-dark);
  font-size: 12px;
  font-weight: 900;
  background: rgba(201, 54, 50, 0.1);
}

.partner-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--leaf);
  font-size: 28px;
  line-height: 1.08;
}

.partner-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.logistics {
  background: var(--leaf-deep);
  color: #fff;
}

.logistics .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.steps article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.steps article:hover {
  border-color: rgba(165, 198, 95, 0.5);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
}

.steps span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--leaf-deep);
  font-weight: 900;
  background: var(--lime);
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.95), rgba(247, 242, 232, 0.78)),
    url("images/image-12-08-26-12-59-2.jpeg") center / cover;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.lead-form:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(15, 40, 28, 0.24);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 850;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 75, 53, 0.18);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(22, 75, 53, 0.1);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.68);
  background: #081f17;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softSunMove {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-stats,
  .proof-band,
  .variety-grid,
  .production,
  .quality,
  .quality-metrics,
  .partner-logos,
  .partners-grid,
  .steps,
  .contact-section,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .production-content {
    padding: 70px 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding-top: 116px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-pad,
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .proof-item,
  .variety-card,
  .steps article,
  .quality-metrics article {
    min-height: auto;
  }
}
