:root {
  --green-900: #045c28;
  --green-800: #087c35;
  --green-700: #0c9140;
  --green-500: #51ae3b;
  --lime: #acd22c;
  --lime-soft: #dff0a4;
  --ink: #1f211f;
  --ink-soft: #424741;
  --paper: #f7f6f0;
  --white: #ffffff;
  --line: rgba(31, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(20, 42, 27, 0.15);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
  --font-display: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  color: rgba(255, 255, 255, 0.85);
  background: var(--green-900);
  font-size: 13px;
}

.utility-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-bar a {
  font-weight: 700;
}

.utility-bar a:hover {
  color: var(--lime-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(23, 44, 28, 0.09);
}

.site-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 205px;
  height: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 14px;
  font-weight: 800;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: var(--white);
  background: var(--green-800);
  border: 1px solid var(--green-800);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(8, 124, 53, 0.18);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 16px 30px rgba(8, 124, 53, 0.23);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
}

.button--dark {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 12px 25px rgba(10, 20, 13, 0.15);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--green-700);
  font-weight: 900;
  line-height: 1.35;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--light {
  border-color: var(--lime);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--lime-soft);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 770px;
  margin-bottom: 28px;
  font-size: clamp(54px, 7.6vw, 104px);
}

h1 em {
  color: var(--green-700);
  font-style: normal;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 5.2vw, 72px);
}

h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 124, 53, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(8, 124, 53, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  padding-block: 76px 98px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px 0 0;
  padding: 28px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero__proof li {
  display: grid;
  gap: 3px;
}

.hero__proof strong {
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.hero__proof span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border-radius: 180px 22px 22px 22px;
  box-shadow: var(--shadow);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(4, 54, 25, 0.36));
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 225px;
  min-height: 142px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 24px;
  color: var(--ink);
  background: var(--lime);
  border: 8px solid var(--paper);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16, 43, 24, 0.18);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.hero__badge-number {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.hero__ticker {
  overflow: hidden;
  padding: 17px 0;
  color: var(--white);
  background: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.hero__ticker > div {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.hero__ticker i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
}

.section {
  padding-block: clamp(82px, 10vw, 140px);
}

.section--intro {
  padding-block: clamp(75px, 8vw, 110px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
}

.intro-grid h2 {
  max-width: 580px;
  margin-bottom: 0;
}

.intro-copy {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
}

.intro-copy p {
  margin-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.section--services {
  color: var(--white);
  background: var(--green-900);
}

.section--services .section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.service-card {
  min-height: 435px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: clamp(32px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 220ms ease, color 220ms ease;
}

.service-card:hover {
  color: var(--ink);
  background: var(--lime);
}

.service-card__number {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
}

.service-card:hover .service-card__number {
  color: var(--green-900);
}

.service-card__tag {
  margin: 0 0 12px;
  color: var(--lime-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card:hover .service-card__tag {
  color: var(--green-900);
}

.service-card h3 {
  margin-bottom: 22px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card:hover p {
  color: rgba(31, 33, 31, 0.8);
}

.service-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}

.service-card li {
  padding: 7px 0 7px 20px;
  position: relative;
}

.service-card li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
}

.service-card:hover li::before {
  background: var(--green-900);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.about-visual {
  position: relative;
  min-height: 690px;
}

.about-visual::before {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 55%;
  height: 36%;
  content: "";
  background: var(--lime);
  border-radius: var(--radius);
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 690px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-visual__caption {
  position: absolute;
  right: -25px;
  bottom: 34px;
  z-index: 2;
  width: min(330px, 82%);
  display: grid;
  padding: 24px 28px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(6, 78, 33, 0.23);
}

.about-visual__caption strong {
  font-size: 19px;
}

.about-visual__caption span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.about-content .lead,
.cellulose-content .lead,
.primes-grid .lead {
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 23px);
}

.about-content > p:not(.eyebrow, .lead) {
  color: var(--ink-soft);
}

.values-list {
  margin-block: 36px;
  border-top: 1px solid var(--line);
}

.values-list > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.values-list > div > span {
  color: var(--green-700);
  font-weight: 900;
}

.values-list p {
  margin: 0;
  color: var(--ink-soft);
}

.values-list strong {
  display: block;
  color: var(--ink);
}

.section--method {
  color: var(--ink);
  background: var(--lime);
}

.section-heading--dark > p {
  color: rgba(31, 33, 31, 0.75);
}

.section--method .eyebrow {
  color: var(--green-900);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.method-list li {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.35);
}

.method-list__number {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 900;
}

.method-list li > div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
}

.method-list h3 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 46px);
}

.method-list p {
  max-width: 650px;
  margin: 0;
  color: rgba(31, 33, 31, 0.75);
}

.section--cellulose {
  background: var(--white);
}

.cellulose-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: clamp(50px, 8vw, 110px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefits-grid > div {
  min-height: 150px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits-grid strong,
.benefits-grid span {
  display: block;
}

.benefits-grid strong {
  margin-bottom: 8px;
  color: var(--green-800);
  font-size: 19px;
}

.benefits-grid span {
  color: var(--ink-soft);
  font-size: 14px;
}

.cellulose-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(172, 210, 44, 0.26), transparent 40%),
    var(--green-900);
  border-radius: var(--radius);
}

.cellulose-panel__label {
  margin: 0 0 42px;
  color: var(--lime-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cellulose-panel__big {
  margin: 0 0 25px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.08;
}

.cellulose-panel > p:not(.cellulose-panel__label, .cellulose-panel__big) {
  color: rgba(255, 255, 255, 0.72);
}

.cellulose-panel .text-link {
  align-self: flex-start;
  margin-top: 25px;
}

.section--gallery {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 305px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  cursor: zoom-in;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(2, 32, 14, 0.75));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item > span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: grid;
  text-align: left;
  font-size: 17px;
  font-weight: 900;
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.gallery-cta p {
  margin: 0;
  color: var(--ink-soft);
}

.gallery-cta > div {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--green-800);
  border: 1px solid rgba(8, 124, 53, 0.35);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.social-link:hover {
  color: var(--white);
  background: var(--green-800);
}

.section--reviews {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(172, 210, 44, 0.13), transparent 28%),
    var(--ink);
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.reviews-header h2 {
  margin: 0;
}

.rating-card {
  min-width: 180px;
  display: grid;
  padding: 22px 26px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 14px;
}

.rating-card:hover {
  background: var(--white);
}

.rating-card .stars {
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.rating-card strong {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.rating-card small {
  color: rgba(31, 33, 31, 0.7);
}

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

.review-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 35px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.review-card blockquote {
  margin: 0 0 35px;
  font-size: 18px;
  line-height: 1.6;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-card figcaption > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.review-card figcaption p {
  display: grid;
  margin: 0;
}

.review-card figcaption small {
  color: rgba(255, 255, 255, 0.55);
}

.section--primes {
  background: var(--white);
}

.primes-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.primes-grid .note {
  margin-block: 25px 35px;
  padding-left: 18px;
  color: var(--ink-soft);
  border-left: 3px solid var(--lime);
  font-size: 14px;
}

.primes-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.deadline-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 160px 18px 18px 18px;
  box-shadow: var(--shadow);
}

.deadline-card > span {
  color: var(--lime-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deadline-card strong {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 115px;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.deadline-card p {
  margin: 15px 0 28px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.deadline-card small {
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  line-height: 1.4;
}

.section--faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 135px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--white);
  background: var(--green-800);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--ink);
  background: var(--lime);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 28px;
  padding-right: 50px;
  color: var(--ink-soft);
}

.section--contact {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 40%, transparent 40%),
    var(--green-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.contact-content > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-details > * {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-details > a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-details span {
  margin-bottom: 7px;
  color: var(--lime-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 15px;
  line-height: 1.45;
}

.contact-form {
  padding: clamp(30px, 5vw, 50px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 31, 13, 0.23);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 19px;
  font-size: 13px;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: #f6f7f3;
  border: 1px solid #d9ddd5;
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(12, 145, 64, 0.1);
}

.form-consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px !important;
  color: var(--ink-soft);
  font-weight: 500 !important;
  line-height: 1.45;
}

.form-consent input {
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--green-800);
}

.form-consent a {
  color: var(--green-800);
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-status {
  min-height: 26px;
  margin: 13px 0 0;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: #aa2525;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #141714;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 0.9fr;
  gap: 55px;
  padding-block: 75px 60px;
}

.footer-brand p {
  max-width: 330px;
  font-size: 14px;
}

.footer-logo {
  width: 270px;
  height: 128px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 270px;
  height: auto;
}

.footer-main h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) > a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
}

.footer-main a:hover {
  color: var(--lime);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.footer-social a:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.footer-bottom {
  min-height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  min-width: 185px;
  display: grid;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(4, 54, 25, 0.28);
  line-height: 1.2;
  transition: transform 180ms ease;
}

.floating-call:hover {
  transform: translateY(-3px);
}

.floating-call span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-call strong {
  font-size: 15px;
}

.lightbox {
  width: min(1120px, calc(100vw - 36px));
  max-width: none;
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(3, 15, 8, 0.9);
  backdrop-filter: blur(7px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 90px);
  object-fit: contain;
  border-radius: 8px;
}

.lightbox > button {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.lightbox p {
  position: absolute;
  bottom: 15px;
  left: 20px;
  margin: 0;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 6px;
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  padding: 25px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.legal-header img {
  width: 185px;
}

.legal-header a:last-child {
  color: var(--green-800);
  font-weight: 900;
}

.legal-content {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 80px 110px;
}

.legal-content h1 {
  font-size: clamp(48px, 8vw, 82px);
}

.legal-content h2 {
  margin-top: 50px;
  font-size: 30px;
}

.legal-content h3 {
  margin-top: 30px;
  font-size: 23px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--green-800);
  text-decoration: underline;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.error-page img {
  width: 220px;
  margin: 0 auto 30px;
}

.error-page h1 {
  margin-bottom: 18px;
  color: var(--green-800);
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .site-header__inner {
    min-height: 76px;
  }

  .brand {
    width: 175px;
    height: 62px;
  }

  .brand img {
    width: auto;
    height: 62px;
  }

  .menu-toggle {
    display: block;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    z-index: 101;
    display: grid;
    gap: 0;
    padding: 20px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(20, 45, 27, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a:not(.button) {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 14px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero__content {
    max-width: 820px;
  }

  .hero__visual {
    width: min(780px, 100%);
  }

  .hero__image-wrap {
    min-height: 520px;
    border-radius: 140px 22px 22px 22px;
  }

  .hero__image-wrap img {
    min-height: 520px;
  }

  .about-grid,
  .cellulose-grid,
  .primes-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(720px, calc(100% - 20px));
  }

  .cellulose-panel {
    min-height: 450px;
  }

  .primes-grid {
    align-items: start;
  }

  .deadline-card {
    width: min(420px, 100%);
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .footer-main > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar p,
  .utility-bar__links span,
  .utility-bar__links a:last-child {
    display: none;
  }

  .hero__grid {
    padding-block: 54px 78px;
  }

  .hero__proof {
    grid-template-columns: 1fr;
  }

  .hero__proof li {
    grid-template-columns: 75px 1fr;
    align-items: center;
  }

  .hero__badge {
    right: -8px;
  }

  .intro-grid,
  .section-heading,
  .reviews-header,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .method-list li {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .method-list li > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-card {
    width: max-content;
  }

  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 410px;
  }

  .hero__image-wrap {
    border-radius: 90px 14px 14px 14px;
  }

  .hero__badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -32px auto 0;
  }

  .services-grid {
    border-left: 0;
  }

  .service-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-visual {
    min-height: 520px;
  }

  .about-visual img {
    height: 520px;
  }

  .about-visual__caption {
    right: -10px;
  }

  .benefits-grid,
  .contact-details,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .gallery-item--wide {
    grid-column: auto;
  }

  .gallery-cta > div {
    flex-wrap: wrap;
  }

  .review-card {
    min-height: 280px;
  }

  .deadline-card {
    min-height: 390px;
    border-radius: 120px 16px 16px 16px;
  }

  .primes-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primes-actions .text-link {
    align-self: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand,
  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .floating-call {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 12px 16px;
  }

  .floating-call span {
    display: none;
  }

  .lightbox > button {
    top: 8px;
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .floating-call,
  .hero__ticker,
  .contact-form,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 30px;
  }
}
