:root {
  --ink: #082c35;
  --ink-deep: #031d25;
  --teal: #0f6970;
  --mint: #b9e7d7;
  --lime: #d7f462;
  --orange: #ff8a37;
  --cream: #f4f0e5;
  --paper: #fbfaf5;
  --line: rgba(8, 44, 53, 0.18);
  --muted: #5e7274;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--lime); color: var(--ink-deep); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 82px;
  padding: 0 4.8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.logo { display: inline-flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 800; letter-spacing: .22em; }
.logo-mark { width: 31px; height: 31px; border: 1px solid currentColor; display: grid; place-items: center; font: 700 18px/1 Georgia, serif; letter-spacing: 0; }
.logo .logo-mark { line-height: 1; }
.site-header nav { display: flex; gap: 34px; font-size: 12px; font-weight: 650; letter-spacing: .05em; }
.site-header nav a, .header-cta { transition: opacity .2s ease; }
.site-header nav a:hover, .header-cta:hover { opacity: .66; }
.header-cta { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.header-cta span { color: var(--lime); margin-left: 7px; }

.hero { min-height: 760px; height: 100vh; position: relative; overflow: hidden; background: var(--ink-deep); color: white; }
.hero-image { position: absolute; inset: 0; background: radial-gradient(circle at 79% 32%, rgba(215,244,98,.3) 0 9%, transparent 9.2%), radial-gradient(circle at 75% 54%, rgba(15,105,112,.7) 0 21%, transparent 21.2%), linear-gradient(120deg, transparent 52%, rgba(185,231,215,.12) 52.2% 66%, transparent 66.2%), var(--ink-deep); }
.hero-image::before { content: "М"; position: absolute; right: 5vw; top: 50%; transform: translateY(-51%); color: rgba(255,255,255,.055); font: 800 min(52vw,760px)/.8 Georgia,serif; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,29,37,.98) 0%, rgba(3,29,37,.76) 46%, rgba(3,29,37,.08) 100%); }
.hero-copy { position: relative; z-index: 2; width: min(760px, 59vw); padding: 155px 0 120px 8.5vw; }
.eyebrow, .section-label, .card-kicker { margin: 0; font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { color: var(--lime); }
.hero h1, h2 { margin: 27px 0 0; font-weight: 760; line-height: .93; letter-spacing: -.055em; text-wrap: balance; }
.hero h1 { font-size: clamp(58px, 7.4vw, 118px); }
h1 em, h2 em { color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { width: min(515px, 92%); margin: 32px 0 0; color: rgba(255,255,255,.77); font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 35px; }
.button { min-height: 54px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 17px; border: 1px solid transparent; font-size: 12px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-bright { color: var(--ink-deep); background: var(--lime); }
.button-bright:hover { background: #e7ff82; }
.text-link { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 13px; }
.hero-meta { position: absolute; z-index: 2; right: 4.8vw; bottom: 44px; display: flex; gap: 1px; }
.hero-meta div { width: 116px; padding: 15px 17px; background: rgba(3,29,37,.78); backdrop-filter: blur(10px); border-top: 2px solid var(--lime); }
.hero-meta span { display: block; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-meta strong { display: block; margin-top: 3px; font: 400 27px/1.1 Georgia, serif; }
.scroll-cue { position: absolute; z-index: 2; left: 4.8vw; bottom: 44px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 65px; height: 1px; background: rgba(255,255,255,.42); }

.intro { padding: 135px 8.5vw 145px; background: var(--paper); }
.section-label { color: var(--teal); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; margin-top: 42px; align-items: start; }
.intro h2, .section-heading h2, .details h2, .company h2, .contact h2 { font-size: clamp(48px, 6vw, 92px); }
.intro h2 em, .section-heading h2 em, .details h2 em, .company h2 em { color: var(--teal); }
.intro-copy { padding-top: 15px; }
.intro-copy p:first-child { margin: 0 0 27px; color: var(--ink); font: 400 26px/1.36 Georgia, serif; }
.intro-copy p:last-child { max-width: 440px; margin: 0; color: var(--muted); }

.products { padding: 120px 4.8vw; background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin: 0 3.7vw 55px; }
.section-heading h2 { margin-top: 0; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(8,44,53,.16); }
.product-card { position: relative; min-height: 480px; overflow: hidden; color: white; isolation: isolate; }
.product-photo { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-photo { transform: scale(1.035); }
.product-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(3,29,37,.92), rgba(3,29,37,.1) 68%), linear-gradient(90deg, rgba(3,29,37,.22), transparent); }
.product-juice .product-photo { background-image: url('category-juice.png'); }
.product-water .product-photo { background-image: url('category-water.png'); }
.product-plastic .product-photo { background-image: url('category-plastic.png'); }
.product-goods .product-photo { background-image: url('category-plastic-products.png'); }
.product-number { position: absolute; top: 27px; left: 29px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.56); font-size: 10px; font-weight: 750; }
.product-copy { position: absolute; inset: auto 30px 31px; display: flex; justify-content: space-between; align-items: end; gap: 35px; }
.product-copy h3 { margin: 0; max-width: 480px; font: 400 clamp(36px,4.3vw,66px)/.95 Georgia, serif; letter-spacing: -.045em; }
.product-copy p { max-width: 220px; margin: 0 0 5px; color: rgba(255,255,255,.74); font-size: 13px; }

.promise { position: relative; min-height: 650px; padding: 135px 8.5vw; display: grid; grid-template-columns: .85fr .65fr; gap: 10vw; background: var(--ink); color: white; overflow: hidden; }
.promise-word { position: absolute; left: -2vw; bottom: -11vw; color: rgba(255,255,255,.035); font-size: 43vw; font-weight: 900; line-height: 1; letter-spacing: -.12em; }
.promise-copy, .promise-list { position: relative; z-index: 1; }
.promise h2 { font-size: clamp(55px, 6vw, 90px); }
.promise-copy > p:last-child { max-width: 520px; margin-top: 35px; color: rgba(255,255,255,.64); font-size: 18px; }
.promise-list { align-self: end; border-top: 1px solid rgba(255,255,255,.22); }
.promise-list div { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.promise-list span { color: var(--lime); font-size: 11px; font-weight: 750; }
.promise-list strong { font: 400 21px/1.2 Georgia, serif; }

.company { padding: 130px 8.5vw; display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; background: var(--mint); }
.company-heading { align-self: start; }
.company-heading .section-label { color: var(--ink); }
.company-address { min-height: 340px; padding: 30px; border-top: 1px solid rgba(8,44,53,.45); background: rgba(255,255,255,.22); display: flex; flex-direction: column; }
.card-kicker { color: var(--teal); }
.company-address address { margin: auto 0 25px; font-style: normal; font-size: 17px; line-height: 1.65; }
.company-address a { align-self: flex-start; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.details { padding: 135px 8.5vw; display: grid; grid-template-columns: .75fr 1.15fr; gap: 10vw; background: var(--paper); }
.details-heading > p:not(.section-label) { max-width: 330px; margin: 30px 0; color: var(--muted); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--teal); }
.requisites { margin: 0; border-top: 1px solid var(--line); }
.requisites div { display: grid; grid-template-columns: 195px 1fr; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.requisites dt { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.requisites dd { margin: 0; font: 400 18px/1.45 Georgia, serif; }

.contact { padding: 130px 8.5vw; background: var(--orange); color: var(--ink-deep); }
.contact .section-label { color: var(--ink-deep); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .55fr; gap: 10vw; margin-top: 38px; align-items: end; }
.contact h2 em { color: var(--cream); }
.contact-grid > div p { margin: 0 0 28px; font-size: 18px; }
.contact-email { display: block; width: max-content; margin: 0 0 25px; padding-bottom: 4px; border-bottom: 2px solid var(--ink-deep); font: 400 clamp(25px,2.3vw,38px)/1 Georgia,serif; }
.contact .button-bright { background: var(--ink-deep); color: white; }

footer { min-height: 95px; padding: 25px 4.8vw; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink-deep); color: rgba(255,255,255,.72); }
footer p { margin: 0; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
footer > a:not(.logo) { font-size: 12px; font-weight: 700; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .hero-copy { width: 76vw; padding-left: 6vw; }
  .hero-image { background-position: center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,29,37,.98), rgba(3,29,37,.8) 50%, rgba(3,29,37,.16)); }
  .intro-grid, .details { gap: 6vw; }
  .product-card { min-height: 400px; }
  .product-copy { display: block; }
  .product-copy p { margin-top: 13px; }
  .company { grid-template-columns: 1fr 1fr; }
  .company-heading { grid-column: 1 / -1; margin-bottom: 25px; }
  .contact-grid { grid-template-columns: 1fr .7fr; gap: 5vw; }
}

@media (max-width: 720px) {
  .site-header { height: 68px; padding: 0 22px; }
  .logo { font-size: 12px; }
  .logo-mark { width: 27px; height: 27px; font-size: 15px; }
  .header-cta { font-size: 10px; }
  .hero { min-height: 780px; height: auto; }
  .hero-image { background-position: center; opacity: .86; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,29,37,.96) 0%, rgba(3,29,37,.65) 60%, rgba(3,29,37,.36)); }
  .hero-copy { width: auto; min-height: 780px; padding: 112px 22px 235px; display: flex; flex-direction: column; justify-content: center; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-meta { left: 22px; right: 22px; bottom: 52px; }
  .hero-meta div { flex: 1; width: auto; padding: 12px; }
  .hero-meta strong { font-size: 22px; }
  .scroll-cue { display: none; }
  .intro, .products, .promise, .company, .details, .contact { padding: 82px 22px; }
  .intro-grid, .details, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro h2, .section-heading h2, .details h2, .company h2, .contact h2 { font-size: clamp(43px, 13vw, 66px); }
  .intro-copy p:first-child { font-size: 22px; }
  .section-heading { display: block; margin: 0 0 35px; }
  .section-heading h2 { margin-top: 22px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 410px; }
  .product-photo { background-size: cover; background-position: center; }
  .product-copy { inset: auto 22px 24px; }
  .product-copy h3 { font-size: 41px; }
  .promise { grid-template-columns: 1fr; gap: 55px; }
  .promise-list { align-self: auto; }
  .promise-word { font-size: 82vw; bottom: 0; }
  .company { grid-template-columns: 1fr; }
  .company-heading { grid-column: auto; }
  .company-address { min-height: 290px; }
  .requisites div { grid-template-columns: 1fr; gap: 7px; }
  footer { padding: 28px 22px; flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
