:root {
  --ink: #16231b;
  --muted: #596255;
  --green: #173f2c;
  --green-2: #2e5d3b;
  --olive: #7e8f55;
  --ivory: #f6f1e7;
  --stone: #e5dac8;
  --terracotta: #93532f;
  --terracotta-light: #e2a06f;
  --white: #fffaf0;
  --focus: #7b3f24;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: Manrope, system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(22, 35, 27, .16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(255, 250, 240, .78);
}

.skip-link {
  background: var(--green);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  left: 18px;
  padding: 12px 16px;
  position: fixed;
  top: 18px;
  transform: translateY(-140%);
  z-index: 100;
}

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

.site-header {
  align-items: center;
  animation: header-reveal .9s cubic-bezier(.22, 1, .36, 1) .25s both;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, .72), rgba(246, 241, 231, .46)),
    rgba(255, 250, 240, .42);
  backdrop-filter: blur(26px) saturate(1.28);
  -webkit-backdrop-filter: blur(26px) saturate(1.28);
  border: 1px solid rgba(255, 250, 240, .56);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, .82),
    inset 0 -1px 0 rgba(22, 35, 27, .06),
    0 18px 50px rgba(22, 35, 27, .1);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  left: 50%;
  isolation: isolate;
  max-width: 1180px;
  overflow: hidden;
  padding: 12px 16px 12px 12px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 20;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, .46), transparent);
  content: "";
  height: 100%;
  left: -35%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 28%;
  z-index: 0;
  animation: header-glint 1.15s cubic-bezier(.22, 1, .36, 1) .7s both;
}

.site-header > * {
  animation: header-content-reveal .65s cubic-bezier(.22, 1, .36, 1) .78s both;
  position: relative;
  z-index: 1;
}

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

.brand-mark {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(22, 35, 27, .1);
  display: grid;
  height: 48px;
  overflow: hidden;
  place-items: center;
  width: 48px;
}

.brand-mark img {
  height: 42px;
  max-width: none;
  object-fit: contain;
  width: 42px;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  color: rgba(22, 35, 27, .72);
  border-radius: 999px;
  padding: 8px 2px;
}

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

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 38px;
  padding: 0;
  width: 38px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px 8px;
}

@keyframes header-reveal {
  0% {
    border-color: rgba(255, 250, 240, 0);
    clip-path: inset(0 50% 0 50% round 999px);
    box-shadow: 0 18px 50px rgba(22, 35, 27, 0);
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }

  28% {
    border-color: rgba(255, 250, 240, .24);
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
  }

  100% {
    border-color: rgba(255, 250, 240, .56);
    clip-path: inset(0 0 0 0 round 999px);
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 240, .82),
      inset 0 -1px 0 rgba(22, 35, 27, .06),
      0 18px 50px rgba(22, 35, 27, .1);
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes header-content-reveal {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-glint {
  0% {
    left: -35%;
    opacity: 0;
  }

  28% {
    opacity: .28;
  }

  100% {
    left: 108%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header::after,
  .site-header > * {
    animation: none;
    transition: none;
  }
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.compare {
  inset: 0;
  position: absolute;
  --split: 65%;
  touch-action: none;
  user-select: none;
}

.compare::after {
  background: linear-gradient(to bottom, transparent, rgba(255, 250, 240, .78), transparent);
  content: "";
  height: 100%;
  left: var(--split);
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  z-index: 3;
}

.compare-img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.compare-before {
  inset: 0;
}

.compare-after {
  clip-path: inset(0 0 0 var(--split));
  inset: 0;
  position: absolute;
}

.compare:not(.is-dragging)::after,
.compare:not(.is-dragging) .compare-after,
.compare:not(.is-dragging) .compare-handle {
  transition: clip-path .18s ease, left .18s ease, opacity .22s ease;
}

.compare.is-intro::after,
.compare.is-intro .compare-after,
.compare.is-intro .compare-handle {
  transition:
    clip-path 1.45s cubic-bezier(.16, 1, .3, 1),
    left 1.45s cubic-bezier(.16, 1, .3, 1),
    opacity .22s ease;
}

.compare-handle {
  align-items: center;
  background: rgba(255, 250, 240, .86);
  border: 1px solid rgba(255, 250, 240, .72);
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  display: flex;
  font: 800 11px/1 var(--font-body);
  gap: 10px;
  left: var(--split);
  letter-spacing: .08em;
  opacity: 0;
  padding: 9px 12px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  top: 68%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.compare.is-handle-visible .compare-handle,
.compare.is-dragging .compare-handle,
.compare:focus-within .compare-handle {
  opacity: 1;
  pointer-events: auto;
}

.compare-handle:focus-visible {
  outline: 3px solid rgba(255, 250, 240, .86);
  outline-offset: 4px;
}

.compare-handle::before {
  background: linear-gradient(to bottom, transparent, rgba(255, 250, 240, .9), transparent);
  content: "";
  height: 120svh;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  z-index: -1;
}

.compare-handle i {
  background: var(--terracotta);
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 26, 18, .72), rgba(14, 26, 18, .18) 45%, rgba(14, 26, 18, .18)),
    linear-gradient(0deg, rgba(14, 26, 18, .52), transparent 48%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  left: max(28px, calc((100vw - 1180px) / 2));
  max-width: 680px;
  position: absolute;
  top: 26%;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--terracotta-light);
  text-shadow: 0 2px 16px rgba(14, 26, 18, .32);
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(56px, 7vw, 108px);
  line-height: .88;
  margin-bottom: 24px;
  max-width: 980px;
}

h2 {
  font-size: clamp(34px, 4.1vw, 62px);
  line-height: .98;
}

h3 {
  font-size: 23px;
  line-height: 1.15;
}

.hero-lead {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  max-width: 620px;
}

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

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
}

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

.btn-ghost {
  border: 1px solid rgba(255, 250, 240, .58);
  color: var(--white);
}

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

.section {
  margin: 0 auto;
  max-width: 1220px;
  padding: 110px 24px;
  scroll-margin-top: 120px;
}

.company-scroll {
  height: 420vh;
  position: relative;
  scroll-margin-top: 120px;
}

.company-sticky {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - 1220px) / 2)) 54px;
  position: sticky;
  top: 0;
}

.company-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .64fr);
  margin-bottom: 34px;
}

.company-head h2 {
  grid-column: 1 / 2;
  margin: 0;
  max-width: 760px;
}

.company-viewport {
  min-width: 0;
  overflow: visible;
  perspective: 1200px;
  position: relative;
}

.company-track {
  display: flex;
  gap: 20px;
  transform: translate3d(0, 0, 0);
  transition: transform .08s linear;
  will-change: transform;
}

.company-panel {
  --cover-progress: 1;
  --panel-lift: 10px;
  --panel-scale: .975;
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .09);
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(22, 35, 27, .1);
  display: flex;
  flex: 0 0 min(760px, 72vw);
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  position: relative;
  transform: translate3d(0, var(--panel-lift), 0) scale(var(--panel-scale));
  transform-origin: left center;
  transition:
    box-shadow .55s ease,
    transform .72s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.company-panel:has(.company-cover) {
  --cover-progress: 0;
}

.company-scroll.is-visible .company-panel:nth-child(1) { transition-delay: .08s; }
.company-scroll.is-visible .company-panel:nth-child(2) { transition-delay: .2s; }
.company-scroll.is-visible .company-panel:nth-child(3) { transition-delay: .32s; }
.company-scroll.is-visible .company-panel:nth-child(4) { transition-delay: .44s; }

.company-scroll.is-visible .company-panel {
  transform: translate3d(0, var(--panel-lift), 0) scale(var(--panel-scale));
}

.company-panel.is-panel-visible {
  box-shadow: 0 28px 80px rgba(22, 35, 27, .14);
  --panel-lift: 0px;
  transform: translate3d(0, var(--panel-lift), 0) scale(var(--panel-scale));
  transition-delay: 0s;
}

.company-panel > span,
.company-panel > h3,
.company-panel > p {
  position: relative;
  z-index: 1;
}

.company-cover {
  border-radius: inherit;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transform: translate3d(0, calc(var(--cover-progress) * -104%), 0);
  transition: transform .18s linear;
  z-index: 3;
}

.company-cover::after {
  background:
    linear-gradient(180deg, rgba(14, 26, 18, .08), rgba(14, 26, 18, .44)),
    linear-gradient(90deg, rgba(14, 26, 18, .48), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.company-cover::before {
  background: rgba(255, 250, 240, .9);
  border-radius: 999px;
  bottom: 26px;
  color: var(--green);
  content: "листайте";
  font: 800 11px/1 var(--font-body);
  letter-spacing: .16em;
  padding: 12px 15px;
  position: absolute;
  right: 26px;
  text-transform: uppercase;
  z-index: 2;
}

.company-cover img {
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.08 - var(--cover-progress) * .04));
  transition: transform .18s linear;
  width: 100%;
}

.company-panel span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.company-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 700;
  line-height: .92;
  margin: auto 0 24px;
  max-width: 640px;
}

.company-panel p {
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

.company-progress {
  background: rgba(22, 35, 27, .12);
  border-radius: 999px;
  height: 3px;
  margin-top: 34px;
  overflow: hidden;
  width: min(420px, 100%);
}

.company-progress i {
  background: var(--green);
  border-radius: inherit;
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
}

.estate-scroll {
  height: 260vh;
  position: relative;
  scroll-margin-top: 120px;
}

.estate-sticky {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(340px, .48fr) minmax(0, 1fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 96px max(24px, calc((100vw - 1260px) / 2));
  position: sticky;
  top: 0;
}

.estate-copy {
  max-width: 510px;
  position: relative;
  z-index: 3;
}

.estate-copy h2 {
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: .96;
  margin: 10px 0 22px;
}

.estate-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.68;
  margin: 0;
}

.estate-proof {
  align-items: center;
  border-bottom: 1px solid rgba(23, 63, 44, .12);
  border-top: 1px solid rgba(23, 63, 44, .12);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  margin-top: 30px;
  padding: 18px 0;
}

.estate-proof strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: .9;
}

.estate-proof span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.estate-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.estate-points span {
  background: rgba(255, 250, 240, .64);
  border: 1px solid rgba(23, 63, 44, .16);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 9px 13px;
}

.estate-board {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, .9), rgba(229, 218, 200, .38)),
    var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 32px;
  box-shadow: 0 34px 100px rgba(22, 35, 27, .12);
  padding: 16px;
  position: relative;
}

.estate-board::before {
  background:
    linear-gradient(rgba(23, 63, 44, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 44, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.estate-board-head,
.estate-board-foot {
  align-items: center;
  color: rgba(22, 35, 27, .62);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: .12em;
  padding: 2px 4px 14px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.estate-board-foot {
  gap: 10px;
  justify-content: flex-start;
  padding: 14px 4px 2px;
}

.estate-board-foot span {
  border: 1px solid rgba(23, 63, 44, .14);
  border-radius: 999px;
  padding: 7px 10px;
}

.estate-visual {
  aspect-ratio: 3 / 2;
  background: #ece7dc;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(22, 35, 27, .12);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.estate-visual::after {
  background:
    linear-gradient(90deg, rgba(22, 35, 27, .2), transparent 28%, transparent 72%, rgba(22, 35, 27, .22)),
    linear-gradient(180deg, transparent 58%, rgba(22, 35, 27, .36));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.estate-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.estate-after {
  --estate-blur: 18px;
  --estate-mask-stop: 0%;
  --estate-reveal: 0;
  filter: blur(var(--estate-blur));
  inset: 0;
  -webkit-mask-image:
    linear-gradient(to top, #000 0 var(--estate-mask-stop), rgba(0, 0, 0, .68) calc(var(--estate-mask-stop) + 9%), transparent calc(var(--estate-mask-stop) + 18%));
  -webkit-mask-repeat: no-repeat;
  mask-image:
    linear-gradient(to top, #000 0 var(--estate-mask-stop), rgba(0, 0, 0, .68) calc(var(--estate-mask-stop) + 9%), transparent calc(var(--estate-mask-stop) + 18%));
  mask-repeat: no-repeat;
  opacity: var(--estate-reveal);
  position: absolute;
  transition: filter .08s linear, opacity .08s linear;
  z-index: 1;
}

.estate-after::after {
  background:
    radial-gradient(circle at 34% 64%, rgba(255, 250, 240, .28), transparent 22%),
    radial-gradient(circle at 68% 48%, rgba(255, 250, 240, .2), transparent 18%);
  content: "";
  inset: 0;
  opacity: calc(var(--estate-reveal) * .42);
  pointer-events: none;
  position: absolute;
}

.estate-after.is-complete {
  --estate-blur: 0px;
  --estate-reveal: 1;
  -webkit-mask-image: none;
  filter: none;
  mask-image: none;
}

.estate-caption {
  align-items: center;
  bottom: 22px;
  color: var(--white);
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  left: 24px;
  position: absolute;
  right: 24px;
  text-shadow: 0 2px 18px rgba(22, 35, 27, .32);
  z-index: 3;
}

.estate-caption span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.estate-caption i {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 3px;
  opacity: .92;
  transform: scaleX(0);
  transform-origin: left center;
}

.advantage-lab {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: .82fr 1.18fr;
}

.lab-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.plant-lab {
  background:
    radial-gradient(circle at 50% 30%, rgba(126, 143, 85, .18), transparent 34%),
    linear-gradient(145deg, #fffaf0, #eadfcd);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 34px;
  min-height: 620px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.plant-lab::before {
  border: 1px solid rgba(23, 63, 44, .14);
  border-radius: 50%;
  content: "";
  height: 420px;
  left: 50%;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 420px;
}

.plant-svg {
  filter: drop-shadow(0 26px 28px rgba(22, 35, 27, .18));
  height: 520px;
  left: 50%;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%);
  width: min(74%, 430px);
}

.trunk {
  fill: none;
  stroke: #6b4630;
  stroke-linecap: round;
  stroke-width: 16;
}

.trunk.thin {
  stroke-width: 8;
}

.soil {
  fill: #4b3527;
}

.roots path {
  fill: none;
  stroke: #e9d8ba;
  stroke-linecap: round;
  stroke-width: 5;
}

.stat-card {
  background: rgba(255, 250, 240, .86);
  border: 1px solid rgba(255, 250, 240, .72);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(22, 35, 27, .12);
  max-width: 190px;
  padding: 17px;
  position: absolute;
}

.stat-card strong {
  display: block;
  font-size: 23px;
}

.stat-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 5px;
}

.stat-a { left: 28px; top: 36px; }
.stat-b { right: 28px; top: 86px; }
.stat-c { left: 46px; bottom: 82px; }
.stat-d { right: 34px; bottom: 48px; }

.nursery-showcase {
  margin: 0 auto;
  max-width: 1460px;
  padding: 90px 24px 110px;
  scroll-margin-top: 120px;
}

.showcase-copy {
  margin: 0 auto -38px;
  max-width: 1240px;
  position: relative;
  z-index: 3;
}

.showcase-copy h2 {
  max-width: 620px;
}

.showcase-stage {
  display: grid;
  gap: 12px;
  grid-template-columns: 250px minmax(0, 1fr) 270px;
  min-height: 790px;
}

.showcase-rail,
.tree-panel,
.showcase-side {
  background: rgba(255, 250, 240, .92);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 30px;
  box-shadow: 0 18px 54px rgba(22, 35, 27, .08);
}

.showcase-rail {
  display: grid;
  min-height: 790px;
  padding: 44px 28px;
}

.showcase-rail div {
  align-content: center;
  border-bottom: 1px solid rgba(23, 63, 44, .12);
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 22px 0;
  text-align: center;
}

.showcase-rail div:last-child {
  border-bottom: 0;
}

.showcase-rail i {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-style: normal;
  font-size: 28px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.showcase-rail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.showcase-rail span {
  color: var(--ink);
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.tree-panel {
  overflow: hidden;
  padding: 26px 30px;
  position: relative;
}

.tree-panel::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(126, 143, 85, .12), transparent 34%),
    linear-gradient(rgba(23, 63, 44, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 44, .04) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
  content: "";
  inset: 0;
  opacity: .72;
  pointer-events: none;
  position: absolute;
}

.tree-title {
  left: 50%;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 24px;
  transform: translateX(-50%) translateY(14px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
  width: min(520px, 88%);
  z-index: 4;
}

.tree-title span {
  color: var(--olive);
  display: block;
  font-size: 34px;
  line-height: 1;
}

.tree-title h2 {
  color: var(--green);
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: .95;
  margin-bottom: 8px;
  white-space: nowrap;
}

.tree-title p {
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}

.root-tree {
  bottom: 92px;
  filter: drop-shadow(0 30px 28px rgba(22, 35, 27, .2));
  left: 50%;
  max-height: 700px;
  object-fit: contain;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) translateY(20px) scale(.985);
  transition:
    filter .28s ease,
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1);
  width: min(520px, 60%);
  z-index: 3;
}

.tree-callout {
  --callout-base-x: 0px;
  --callout-base-y: 0px;
  --callout-delay: 0s;
  --callout-enter-x: 0px;
  --callout-enter-y: 24px;
  --line-scale: 0;
  color: var(--ink);
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translate3d(var(--callout-enter-x), var(--callout-enter-y), 0);
  transition:
    color .24s ease,
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
  width: 230px;
  z-index: 5;
}

.nursery-showcase.is-visible .tree-title {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: .12s;
}

.nursery-showcase.is-visible .root-tree {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  transition-delay: .24s;
}

.nursery-showcase.is-callouts-visible .tree-callout {
  --line-scale: 1;
  opacity: 1;
  transform: translate3d(var(--callout-base-x), var(--callout-base-y), 0);
  transition-delay: var(--callout-delay);
}

.nursery-showcase.is-callouts-visible .tree-callout:hover,
.nursery-showcase.is-callouts-visible .tree-callout:focus-visible,
.side-metric:hover,
.side-metric:focus-visible,
  .side-service:hover,
  .side-service:focus-visible {
  color: var(--green);
  outline: 3px solid var(--focus);
  outline-offset: 5px;
  transform: translate3d(var(--callout-base-x, 0px), calc(var(--callout-base-y, 0px) - 3px), 0);
  transition-delay: 0s;
}

.tree-panel:has(.tree-callout:hover) .root-tree,
.tree-panel:has(.tree-callout:focus-visible) .root-tree {
  filter: drop-shadow(0 36px 34px rgba(22, 35, 27, .25));
  transform: translateX(-50%) translateY(0) scale(1.015);
}

.tree-callout span {
  background: rgba(255, 250, 240, .88);
  border: 1px solid rgba(126, 143, 85, .64);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, .84),
    0 18px 34px rgba(22, 35, 27, .08);
  display: block;
  font: 800 14px/1.28 var(--font-body);
  padding: 14px 16px;
  position: relative;
}

.tree-callout span::after {
  border: 1px solid rgba(126, 143, 85, .28);
  border-radius: 13px;
  content: "";
  inset: 4px;
  opacity: 0;
  position: absolute;
  transform: scaleX(.2);
  transform-origin: left center;
  transition:
    opacity .34s ease,
    transform .72s cubic-bezier(.22, 1, .36, 1);
}

.nursery-showcase.is-callouts-visible .tree-callout span::after {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: calc(var(--callout-delay) + .16s);
}

.tree-callout::before,
.tree-callout::after {
  background: rgba(126, 143, 85, .85);
  content: "";
  height: 1px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition:
    opacity .32s ease,
    transform .78s cubic-bezier(.22, 1, .36, 1);
}

.tree-callout::after {
  border-radius: 50%;
  height: 8px;
  opacity: 0;
  transform: translateY(-50%) scale(var(--line-scale));
  transition:
    opacity .24s ease,
    transform .38s cubic-bezier(.22, 1, .36, 1);
  width: 8px;
}

.nursery-showcase.is-callouts-visible .tree-callout::before {
  opacity: 1;
  transition-delay: calc(var(--callout-delay) + .34s);
}

.nursery-showcase.is-callouts-visible .tree-callout::after {
  opacity: 1;
  transition-delay: calc(var(--callout-delay) + .95s);
}

.callout-olive {
  --callout-delay: .08s;
  --callout-enter-x: -26px;
  left: 44px;
  top: 214px;
}

.callout-olive::before {
  left: 100%;
  transform: translateY(-50%) rotate(-8deg) scaleX(var(--line-scale));
  transform-origin: left center;
  width: 132px;
}

.callout-olive::after {
  left: calc(100% + 128px);
  top: calc(50% - 18px);
}

.callout-wind {
  --callout-delay: .62s;
  --callout-enter-x: -26px;
  left: 42px;
  top: 456px;
}

.callout-wind::before {
  left: 100%;
  transform: translateY(-50%) rotate(7deg) scaleX(var(--line-scale));
  transform-origin: left center;
  width: 126px;
}

.callout-wind::after {
  left: calc(100% + 122px);
  top: calc(50% + 15px);
}

.callout-pot {
  --callout-delay: .35s;
  --callout-enter-x: 26px;
  right: 44px;
  top: 516px;
}

.callout-pot span::after,
.callout-roots span::after {
  transform-origin: right center;
}

.callout-pot::before {
  right: 100%;
  transform: translateY(-50%) rotate(-54deg) scaleX(var(--line-scale));
  transform-origin: right center;
  width: 64px;
}

.callout-pot::after {
  right: calc(100% + 38px);
  top: calc(50% + 52px);
}

.callout-roots {
  --callout-delay: .9s;
  --callout-enter-x: 26px;
  right: 42px;
  top: 642px;
}

.callout-roots::before {
  right: 100%;
  transform: translateY(-50%) rotate(5deg) scaleX(var(--line-scale));
  transform-origin: right center;
  width: 174px;
}

.callout-roots::after {
  right: calc(100% + 170px);
  top: calc(50% - 15px);
}

.nursery-showcase.is-callouts-drawn .tree-callout,
.nursery-showcase.is-callouts-drawn .tree-callout span::after,
.nursery-showcase.is-callouts-drawn .tree-callout::before,
.nursery-showcase.is-callouts-drawn .tree-callout::after {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .tree-title,
  .root-tree,
  .tree-callout,
  .tree-callout::before,
  .tree-callout::after {
    opacity: 1;
    transition: none;
  }

  .tree-title,
  .root-tree,
  .tree-callout,
  .nursery-showcase.is-visible .tree-title,
  .nursery-showcase.is-visible .root-tree,
  .nursery-showcase.is-callouts-visible .tree-callout {
    transform: none;
  }
}

.showcase-side {
  display: grid;
  gap: 18px;
  min-height: 790px;
  padding: 44px 28px;
}

.side-metric,
.side-service {
  transition: color .24s ease, transform .24s ease;
}

.side-metric {
  border-bottom: 1px solid rgba(23, 63, 44, .12);
  padding-bottom: 22px;
}

.side-metric i,
.side-service i {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-style: normal;
  height: 48px;
  justify-content: center;
  margin-bottom: 14px;
  width: 48px;
}

.side-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}

.side-metric span,
.side-service p {
  font-size: 15px;
  line-height: 1.45;
}

.side-photo {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
}

.side-service {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 48px 1fr;
}

.side-service i {
  margin: 0;
}

.side-service h3 {
  font: 800 16px/1.25 var(--font-body);
  margin-bottom: 8px;
}

.section-head {
  margin-bottom: 36px;
  max-width: 760px;
}

.section-head > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.catalog-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr .85fr .85fr;
}

.catalog-card {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(22, 35, 27, .08);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.catalog-card-wide {
  grid-row: span 2;
}

.catalog-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform .7s ease;
  width: 100%;
}

.catalog-card:hover img {
  transform: scale(1.045);
}

.catalog-card::after {
  background:
    linear-gradient(180deg, rgba(14, 26, 18, .08), rgba(14, 26, 18, .72)),
    linear-gradient(90deg, rgba(14, 26, 18, .52), transparent 72%);
  content: "";
  inset: 0;
  position: absolute;
}

.catalog-card div {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.catalog-card span {
  color: var(--terracotta-light);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.catalog-card h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 48px);
  line-height: .95;
  margin-bottom: 14px;
}

.catalog-card p {
  color: rgba(255, 250, 240, .8);
  line-height: 1.55;
  margin-bottom: 0;
}

.projects {
  display: grid;
  gap: 30px;
  grid-template-columns: .78fr 1.22fr;
}

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

.guide-grid-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, .96), rgba(229, 218, 200, .5)),
    var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(22, 35, 27, .08);
  display: grid;
  min-height: 300px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: transform .24s ease, box-shadow .24s ease;
}

.guide-card-main {
  min-height: 360px;
}

.guide-card:hover {
  box-shadow: 0 28px 80px rgba(22, 35, 27, .12);
  transform: translateY(-4px);
}

.guide-card span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.guide-card h3 {
  align-self: end;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 46px);
  line-height: .95;
  margin-bottom: 16px;
}

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

.guide-card > span,
.guide-card > h3,
.guide-card > p {
  position: relative;
  z-index: 2;
}

.guide-card-pest::before,
.guide-card-pest::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.guide-card-pest::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(147, 83, 47, .26) 0 8px, transparent 9px),
    radial-gradient(circle at 18% 22%, rgba(147, 83, 47, .18) 0 5px, transparent 6px),
    radial-gradient(circle at 83% 20%, rgba(147, 83, 47, .2) 0 10px, transparent 11px),
    radial-gradient(circle at 76% 34%, rgba(147, 83, 47, .17) 0 6px, transparent 7px),
    radial-gradient(circle at 16% 76%, rgba(147, 83, 47, .2) 0 9px, transparent 10px),
    radial-gradient(circle at 88% 78%, rgba(147, 83, 47, .18) 0 7px, transparent 8px),
    linear-gradient(145deg, rgba(246, 241, 231, .18), rgba(126, 143, 85, .08));
  mix-blend-mode: multiply;
  opacity: 0;
  transform: scale(1.04);
  animation: pest-card-heal 7s ease-in-out infinite;
  z-index: 1;
}

.guide-card-pest::after {
  background:
    linear-gradient(105deg, transparent 0 12%, rgba(147, 83, 47, .35) 12.5% 13.2%, transparent 14% 100%),
    linear-gradient(28deg, transparent 0 21%, rgba(147, 83, 47, .22) 21.5% 22.2%, transparent 23% 100%),
    linear-gradient(152deg, transparent 0 52%, rgba(147, 83, 47, .26) 52.5% 53.2%, transparent 54% 100%),
    radial-gradient(circle at 54% 44%, rgba(147, 83, 47, .22) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 50%, rgba(147, 83, 47, .16) 0 2px, transparent 3px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transform: translateX(-10px);
  animation: pest-tunnels 7s ease-in-out infinite;
  z-index: 1;
}

.guide-card-pest:hover::before,
.guide-card-pest:hover::after {
  animation-duration: 4.8s;
}

@keyframes pest-card-heal {
  0%, 100% {
    opacity: 0;
    transform: scale(1.04);
  }

  18%, 42% {
    opacity: .95;
    transform: scale(1);
  }

  68% {
    opacity: .16;
    transform: scale(1.015);
  }
}

@keyframes pest-tunnels {
  0%, 100% {
    opacity: 0;
    transform: translateX(-12px);
  }

  22%, 46% {
    opacity: .82;
    transform: translateX(0);
  }

  72% {
    opacity: .12;
    transform: translateX(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-card-pest::before,
  .guide-card-pest::after,
  .story-point-habitus::before,
  .story-point-drainage::after,
  .story-point-pathology::before {
    animation: none;
  }

  .guide-card-pest::before,
  .guide-card-pest::after {
    opacity: .18;
  }
}

.guide-library {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.2fr 1fr;
  margin-top: 18px;
}

.guide-library article {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(22, 35, 27, .06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
}

.guide-library span {
  color: var(--terracotta);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.guide-library a {
  align-items: center;
  border-bottom: 1px solid rgba(23, 63, 44, .1);
  color: var(--green);
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  line-height: 1.28;
  min-height: 42px;
  padding: 8px 0;
}

.guide-library a::after {
  color: var(--terracotta);
  content: "↗";
  font-size: 16px;
  margin-left: 16px;
}

.guide-library a:last-child {
  border-bottom: 0;
}

.video-cinema {
  background:
    radial-gradient(circle at 50% 12%, rgba(226, 160, 111, .2), transparent 28%),
    linear-gradient(180deg, #101812, #17231b 54%, #0c120f);
  color: var(--white);
  min-height: 112svh;
  overflow: hidden;
  padding: 110px max(42px, calc((100vw - 1180px) / 2)) 140px;
  position: relative;
  scroll-margin-top: 120px;
}

.video-cinema::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .04) 1px, transparent 1px),
    linear-gradient(rgba(255, 250, 240, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  opacity: .5;
  position: absolute;
}

.cinema-copy {
  max-width: 670px;
  position: relative;
  z-index: 2;
}

.cinema-copy h2 {
  font-size: clamp(48px, 6vw, 92px);
  margin-bottom: 18px;
}

.cinema-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, .74);
  font-size: 18px;
  line-height: 1.65;
}

.cinema-screen {
  min-height: 720px;
  perspective: 1300px;
  position: relative;
  z-index: 1;
}

.cinema-beam {
  background: linear-gradient(180deg, rgba(255, 250, 240, .18), transparent 72%);
  clip-path: polygon(44% 0, 56% 0, 88% 100%, 12% 100%);
  filter: blur(2px);
  inset: 0 8% 4%;
  opacity: .65;
  position: absolute;
}

.video-ticket-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1120px;
  padding: 52px 18px 28px;
  position: relative;
  z-index: 2;
}

.video-ticket {
  --fall-delay: 0s;
  background: rgba(255, 250, 240, .94);
  border: 1px solid rgba(255, 250, 240, .24);
  border-radius: 16px;
  box-shadow: 0 26px 72px rgba(0, 0, 0, .3);
  color: var(--ink);
  display: grid;
  gap: 10px;
  min-height: 0;
  opacity: 0;
  padding: 9px;
  position: relative;
  transform: translate3d(0, -160px, 0) rotateX(20deg) rotateZ(var(--tilt, 0deg));
  will-change: transform, opacity;
}

.video-cinema.is-cinema-live .video-ticket {
  animation: ticket-fall .95s cubic-bezier(.16, 1, .3, 1) var(--fall-delay) both;
}

.video-poster {
  align-items: end;
  aspect-ratio: 9 / 12;
  background: #0e1a12;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  overflow: hidden;
  padding: 12px;
  position: relative;
  width: 100%;
}

.video-poster video,
.video-poster img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: .88;
  position: absolute;
  transition: opacity .3s ease, transform .5s ease;
  width: 100%;
}

.video-poster img[hidden],
.video-poster video[hidden] {
  display: none;
}

.video-ticket:hover .video-poster video,
.video-ticket:hover .video-poster img {
  opacity: 1;
  transform: scale(1.04);
}

.video-poster-fallback {
  background:
    linear-gradient(145deg, rgba(126, 143, 85, .8), rgba(23, 63, 44, .9)),
    url("assets/card-olives.webp") center / cover;
  inset: 0;
  position: absolute;
}

.video-poster::before {
  background: rgba(255, 250, 240, .9);
  border-radius: 50%;
  content: "";
  height: 46px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  z-index: 2;
}

.video-poster::after {
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--green);
  border-top: 9px solid transparent;
  content: "";
  left: 52%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.video-poster span {
  background: rgba(14, 26, 18, .72);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  position: relative;
  z-index: 4;
}

.video-ticket h3 {
  font: 800 14px/1.16 var(--font-body);
  margin: 0 0 7px;
}

.video-ticket p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-dialog {
  background: transparent;
  border: 0;
  color: var(--white);
  height: 100%;
  max-height: none;
  max-width: none;
  padding: 22px;
  width: 100%;
}

.video-dialog::backdrop {
  background: rgba(6, 10, 8, .78);
  backdrop-filter: blur(12px);
}

.video-dialog-panel {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: min(980px, 100%);
  min-height: 100%;
  place-content: center;
  position: relative;
}

.video-dialog video {
  background: #050806;
  border-radius: 22px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .5);
  max-height: 76svh;
  object-fit: contain;
  width: 100%;
}

.video-dialog-close {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  color: var(--green);
  cursor: pointer;
  display: flex;
  font: 800 28px/1 var(--font-body);
  height: 48px;
  justify-content: center;
  justify-self: end;
  width: 48px;
}

.video-dialog-caption {
  display: grid;
  gap: 5px;
}

.video-dialog-caption span {
  color: var(--terracotta-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.video-dialog-caption strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

@keyframes ticket-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -190px, 0) rotateX(24deg) rotateZ(calc(var(--tilt) - 10deg)) scale(.92);
  }

  72% {
    opacity: 1;
    transform: translate3d(0, 12px, 0) rotateX(0deg) rotateZ(var(--tilt)) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateZ(var(--tilt)) scale(1);
  }
}

.media-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-strip article {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 22px;
  padding: 28px;
}

.media-strip span,
.media-strip strong {
  display: block;
}

.media-strip span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.media-strip strong {
  font-size: 22px;
}

.reference-page {
  background:
    linear-gradient(180deg, rgba(23, 63, 44, .08), transparent 360px),
    var(--ivory);
}

.reference-header {
  animation: none;
}

.reference-header > * {
  animation: none;
}

.reference-hero {
  margin: 0 auto;
  max-width: 1220px;
  padding: 170px 24px 70px;
}

.reference-hero h1 {
  color: var(--green);
  font-size: clamp(52px, 7vw, 104px);
  max-width: 980px;
}

.reference-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  max-width: 780px;
}

.reference-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.reference-stats div {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 20px;
  padding: 22px;
}

.reference-stats strong,
.reference-stats span {
  display: block;
}

.reference-stats strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: .9;
}

.reference-stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
}

.reference-shell {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 24px 110px;
}

.reference-toolbar {
  background: rgba(255, 250, 240, .78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(22, 35, 27, .08);
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 20px;
  position: sticky;
  top: 110px;
  z-index: 5;
}

.reference-search {
  display: grid;
  gap: 10px;
}

.reference-search span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reference-search input {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .14);
  border-radius: 999px;
  color: var(--ink);
  font: 700 16px/1 var(--font-body);
  min-height: 54px;
  padding: 0 20px;
}

.reference-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reference-filters button {
  background: rgba(23, 63, 44, .08);
  border: 1px solid rgba(23, 63, 44, .12);
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  font: 800 13px/1 var(--font-body);
  min-height: 38px;
  padding: 0 14px;
}

.reference-filters button.is-active {
  background: var(--green);
  color: var(--white);
}

.reference-results-head {
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 16px;
}

.reference-list {
  display: grid;
  gap: 14px;
}

.reference-item {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(22, 35, 27, .06);
  overflow: hidden;
}

.reference-item summary {
  cursor: pointer;
  display: grid;
  gap: 9px;
  list-style: none;
  padding: 24px 28px;
}

.reference-item summary::-webkit-details-marker {
  display: none;
}

.reference-item summary span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reference-item summary strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: .96;
}

.reference-item summary small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.reference-item-body {
  border-top: 1px solid rgba(22, 35, 27, .08);
  color: var(--ink);
  display: grid;
  gap: 14px;
  line-height: 1.68;
  max-width: 100%;
  overflow-x: auto;
  padding: 28px;
}

.reference-item-body h2,
.reference-item-body h3 {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  margin: 14px 0 4px;
}

.reference-item-body p,
.reference-item-body li {
  color: rgba(22, 35, 27, .82);
}

.reference-item-body table {
  border-collapse: collapse;
  display: block;
  font-size: 14px;
  max-width: 100%;
  overflow-x: auto;
  width: max-content;
}

.reference-item-body td,
.reference-item-body th {
  border: 1px solid rgba(22, 35, 27, .14);
  padding: 10px 12px;
  vertical-align: top;
}

.service-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(22, 35, 27, .1);
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.service-card div {
  padding: 24px;
}

.service-card span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.story {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr .8fr;
}

.story-card {
  background: var(--green);
  border-radius: 34px;
  color: var(--white);
  padding: clamp(34px, 6vw, 72px);
}

.story-card p:not(.eyebrow) {
  color: rgba(255, 250, 240, .78);
  font-size: 18px;
  line-height: 1.7;
}

.story-list {
  display: grid;
  gap: 16px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.story-point {
  background: var(--white);
  border-radius: 22px;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.story-point::before,
.story-point::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.story-point::before {
  border: 1px solid rgba(23, 63, 44, .1);
  border-radius: 50%;
  height: 108px;
  opacity: .72;
  right: 22px;
  top: 20px;
  width: 108px;
}

.story-point-habitus::before {
  background:
    radial-gradient(circle at 52% 42%, rgba(126, 143, 85, .4) 0 24px, transparent 25px),
    linear-gradient(90deg, transparent 48%, rgba(23, 63, 44, .45) 49% 51%, transparent 52%),
    radial-gradient(ellipse at 50% 78%, rgba(156, 94, 61, .16), transparent 42%);
  animation: habitus-sway 4.8s ease-in-out infinite;
}

.story-point-habitus::after {
  background:
    linear-gradient(90deg, rgba(23, 63, 44, .16), transparent 70%),
    linear-gradient(90deg, rgba(23, 63, 44, .12), transparent 62%);
  border-radius: 999px;
  height: 6px;
  right: 56px;
  top: 66px;
  transform: rotate(-10deg);
  width: 110px;
}

.story-point-drainage::before {
  background:
    linear-gradient(180deg, rgba(47, 118, 151, .18), transparent 38%),
    repeating-linear-gradient(180deg, rgba(156, 94, 61, .2) 0 8px, rgba(126, 143, 85, .12) 8px 15px);
}

.story-point-drainage::after {
  background:
    radial-gradient(circle, rgba(47, 118, 151, .36) 0 4px, transparent 5px),
    radial-gradient(circle, rgba(47, 118, 151, .28) 0 3px, transparent 4px),
    linear-gradient(90deg, transparent, rgba(47, 118, 151, .46), transparent);
  background-position: 0 0, 42px 18px, 0 36px;
  background-repeat: no-repeat;
  height: 58px;
  right: 34px;
  top: 50px;
  width: 118px;
  animation: drainage-flow 3.6s ease-in-out infinite;
}

.story-point-pathology::before {
  background:
    radial-gradient(circle at 44% 42%, transparent 0 24px, rgba(23, 63, 44, .46) 25px 28px, transparent 29px),
    linear-gradient(45deg, transparent 58%, rgba(23, 63, 44, .42) 59% 64%, transparent 65%),
    radial-gradient(circle at 34% 32%, rgba(156, 94, 61, .22) 0 5px, transparent 6px),
    radial-gradient(circle at 58% 54%, rgba(126, 143, 85, .28) 0 6px, transparent 7px);
  animation: pathology-pulse 3.8s ease-in-out infinite;
}

.story-list strong,
.story-list span {
  display: block;
  max-width: calc(100% - 118px);
  position: relative;
  z-index: 1;
}

.story-list strong {
  font-size: 24px;
}

.story-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
}

@keyframes habitus-sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}

@keyframes drainage-flow {
  0%, 100% { opacity: .52; transform: translateY(-2px); }
  50% { opacity: .9; transform: translateY(8px); }
}

@keyframes pathology-pulse {
  0%, 100% { opacity: .58; transform: scale(.98); }
  50% { opacity: .82; transform: scale(1.04); }
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr .85fr .85fr 1.15fr;
}

.gallery-grid a {
  border-radius: 26px;
  display: block;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform .7s ease;
  width: 100%;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-grid span {
  background: rgba(255, 250, 240, .9);
  border-radius: 999px;
  bottom: 18px;
  color: var(--green);
  font-weight: 800;
  left: 18px;
  padding: 12px 16px;
  position: absolute;
}

.proof {
  display: grid;
  gap: 30px;
  grid-template-columns: .78fr 1.22fr;
}

.proof-head {
  align-self: start;
  position: sticky;
  top: 136px;
}

.proof-head h2 {
  margin-bottom: 28px;
}

.proof-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-card,
.proof-note {
  background: var(--white);
  border: 1px solid rgba(22, 35, 27, .08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(22, 35, 27, .08);
  overflow: hidden;
}

.proof-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.proof-video {
  aspect-ratio: 4 / 3;
  background: #0e1a12;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.proof-video::after {
  background:
    linear-gradient(180deg, rgba(14, 26, 18, .04), rgba(14, 26, 18, .44)),
    radial-gradient(circle at 50% 50%, rgba(255, 250, 240, .18), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.proof-video img,
.proof-video video {
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: opacity .3s ease, transform .7s ease;
  width: 100%;
}

.proof-video:hover img,
.proof-video:hover video {
  opacity: 1;
  transform: scale(1.04);
}

.proof-video span {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 240, .38);
  border: 1px solid rgba(255, 250, 240, .54);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(14, 26, 18, .18);
  color: var(--green);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  width: 54px;
  z-index: 1;
}

.proof-video span::before {
  background: rgba(21, 74, 49, .92);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
  height: 18px;
  margin-left: 3px;
  width: 15px;
}

.proof-video:hover span {
  background: rgba(255, 250, 240, .58);
  border-color: rgba(255, 250, 240, .78);
  transform: translate(-50%, -50%) scale(1.08);
}

.proof-card div {
  padding: 24px;
}

.proof-card span {
  color: var(--terracotta);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

.proof-note {
  align-content: center;
  background:
    linear-gradient(145deg, rgba(23, 63, 44, .96), rgba(46, 93, 59, .92)),
    var(--green);
  color: var(--white);
  display: grid;
  grid-column: 1 / -1;
  min-height: 210px;
  padding: clamp(28px, 4vw, 46px);
}

.proof-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 84px);
  line-height: .95;
}

.proof-note p {
  color: rgba(255, 250, 240, .82);
  font-size: 19px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 620px;
}

.contacts {
  align-items: center;
  background: var(--green);
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: 1.1fr .9fr;
  margin-top: 60px;
  padding: clamp(46px, 8vw, 100px) max(24px, calc((100vw - 1180px) / 2));
}

.contacts h2 {
  margin-bottom: 0;
}

.contacts-intro {
  display: grid;
  gap: 26px;
}

.location-map {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, .1), rgba(255, 250, 240, .04)),
    radial-gradient(circle at 18% 64%, rgba(255, 250, 240, .14), transparent 22%),
    radial-gradient(circle at 74% 32%, rgba(226, 160, 111, .16), transparent 26%);
  border: 1px solid rgba(255, 250, 240, .16);
  border-radius: 26px;
  height: 230px;
  max-width: 560px;
  overflow: hidden;
  position: relative;
}

.location-map::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .06) 1%, transparent 1px),
    linear-gradient(rgba(255, 250, 240, .05) 1%, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  opacity: .68;
  position: absolute;
}

.map-line {
  background: linear-gradient(90deg, rgba(255, 250, 240, .16), rgba(255, 250, 240, .62), rgba(255, 250, 240, .16));
  height: 2px;
  position: absolute;
  transform-origin: left center;
}

.map-line-a {
  left: 24%;
  top: 61%;
  transform: rotate(-21deg);
  width: 220px;
}

.map-line-b {
  left: 52%;
  top: 39%;
  transform: rotate(28deg);
  width: 190px;
}

.map-pin {
  align-items: center;
  color: rgba(255, 250, 240, .9);
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  position: absolute;
  z-index: 1;
}

.map-pin i {
  background: var(--terracotta);
  border: 5px solid rgba(255, 250, 240, .9);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(226, 160, 111, .16);
  height: 20px;
  width: 20px;
}

.map-pin-gelendzhik {
  left: 13%;
  top: 57%;
}

.map-pin-marina {
  left: 47%;
  top: 25%;
}

.map-pin-novorossiysk {
  right: 9%;
  top: 61%;
}

.contact-card {
  background: rgba(255, 250, 240, .1);
  border: 1px solid rgba(255, 250, 240, .2);
  border-radius: 26px;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-phone {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
}

.contact-locations {
  display: grid;
  gap: 10px;
}

.contact-location {
  align-items: start;
  background: rgba(255, 250, 240, .08);
  border: 1px solid rgba(255, 250, 240, .12);
  border-radius: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px 1fr;
  padding: 14px;
}

.contact-location > span {
  align-items: center;
  background: rgba(255, 250, 240, .14);
  border-radius: 999px;
  color: rgba(255, 250, 240, .9);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.contact-location strong,
.contact-location small {
  display: block;
}

.contact-location strong {
  color: var(--white);
  font-weight: 800;
}

.contact-location small,
.contact-mail {
  color: rgba(255, 250, 240, .78);
  line-height: 1.45;
  margin-top: 3px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contact-action {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  font: 800 15px/1 var(--font-body);
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
}

.contact-action-secondary {
  background: rgba(255, 250, 240, .1);
  border: 1px solid rgba(255, 250, 240, .22);
  color: var(--white);
}

.requisites-dialog {
  background: transparent;
  border: 0;
  color: var(--ink);
  max-width: min(620px, calc(100vw - 28px));
  padding: 0;
}

.requisites-dialog::backdrop {
  background: rgba(14, 26, 18, .58);
  backdrop-filter: blur(8px);
}

.requisites-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(14, 26, 18, .32);
  padding: clamp(28px, 5vw, 44px);
  position: relative;
}

.requisites-card h2 {
  color: var(--green);
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 22px;
}

.requisites-card dl {
  display: grid;
  gap: 10px;
}

.requisites-card dl div {
  background: rgba(23, 63, 44, .06);
  border: 1px solid rgba(23, 63, 44, .08);
  border-radius: 16px;
  display: grid;
  gap: 8px;
  grid-template-columns: 170px 1fr;
  padding: 14px 16px;
}

.requisites-card dt {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.requisites-card dd {
  color: var(--ink);
  font-weight: 800;
  margin: 0;
  overflow-wrap: anywhere;
}

.requisites-close {
  align-items: center;
  background: rgba(23, 63, 44, .08);
  border: 0;
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 900px) {
  .site-header {
    background:
      linear-gradient(135deg, rgba(255, 250, 240, .92), rgba(246, 241, 231, .82)),
      rgba(255, 250, 240, .9);
    border-color: rgba(22, 35, 27, .08);
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    padding: 12px 0 8px;
  }

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

  .hero-content {
    left: 24px;
    max-width: calc(100% - 48px);
    top: 22%;
  }

  .advantage-lab,
  .catalog-grid,
  .guide-grid,
  .guide-grid-primary,
  .guide-library,
  .media-strip,
  .service-grid,
  .story,
  .proof,
  .projects,
  .contacts {
    grid-template-columns: 1fr;
  }

  .company-scroll {
    height: auto;
  }

  .estate-scroll {
    height: auto;
  }

  .company-sticky {
    min-height: 0;
    padding: 92px 18px 76px;
    position: relative;
  }

  .estate-sticky {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 92px 18px 76px;
    position: relative;
  }

  .estate-copy {
    max-width: 720px;
  }

  .estate-visual {
    border-radius: 20px;
  }

  .estate-after {
    --estate-blur: 0px;
    --estate-reveal: 1;
    -webkit-mask-image: none;
    filter: none;
    mask-image: none;
    opacity: 1;
  }

  .company-head {
    display: block;
    margin-bottom: 24px;
  }

  .company-track {
    display: grid;
    gap: 16px;
    transform: none;
  }

  .company-panel {
    flex-basis: auto;
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .company-panel:has(.company-cover) {
    --cover-progress: 1;
  }

  .company-cover {
    display: none;
  }

  .company-progress {
    display: none;
  }

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

  .proof-head {
    position: static;
  }

  .catalog-card,
  .catalog-card-wide {
    grid-row: auto;
    min-height: 380px;
  }

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

  .proof-note {
    grid-column: auto;
  }

  .nursery-showcase {
    padding: 76px 18px;
  }

  .showcase-stage {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .showcase-rail {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 0;
    padding: 18px;
  }

  .showcase-rail div {
    background: rgba(255, 250, 240, .82);
    border: 1px solid rgba(23, 63, 44, .12);
    border-radius: 18px;
    padding: 16px;
  }

  .tree-panel {
    display: grid;
    gap: 16px;
    min-height: 0;
    padding: 24px;
  }

  .tree-title,
  .root-tree,
  .tree-callout {
    --callout-base-x: 0px;
    --callout-base-y: 0px;
    --callout-enter-x: 0px;
    --callout-enter-y: 16px;
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: auto;
  }

  .nursery-showcase.is-visible .tree-title,
  .nursery-showcase.is-visible .root-tree,
  .nursery-showcase.is-callouts-visible .tree-callout,
  .nursery-showcase.is-callouts-visible .tree-callout:hover,
  .nursery-showcase.is-callouts-visible .tree-callout:focus-visible,
  .tree-panel:has(.tree-callout:hover) .root-tree,
  .tree-panel:has(.tree-callout:focus-visible) .root-tree {
    transform: none;
  }

  .tree-title {
    justify-self: center;
    order: 1;
  }

  .tree-title h2 {
    white-space: normal;
  }

  .root-tree {
    justify-self: center;
    max-width: 430px;
    order: 2;
    width: 72%;
  }

  .tree-callout {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 72px 1fr;
    text-align: left;
  }

  .tree-callout i {
    height: 62px;
    margin: 0;
    width: 62px;
  }

  .tree-callout::before,
  .tree-callout::after {
    display: none;
  }

  .callout-olive { order: 3; }
  .callout-wind { order: 4; }
  .callout-pot { order: 5; }
  .callout-roots { order: 6; }
  .callout-planting { order: 7; }

  .callout-planting h3,
  .callout-planting p {
    display: block;
    width: auto;
  }

  .showcase-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 24px;
  }

  .story-list {
    grid-template-rows: none;
  }

  .video-cinema {
    min-height: 0;
    padding: 82px 18px;
  }

  .cinema-screen {
    margin-inline: -18px;
    height: auto;
    min-height: 0;
    perspective: none;
  }

  .cinema-screen::after {
    background: linear-gradient(90deg, transparent, #101812);
    content: "";
    inset: 0 0 0 auto;
    pointer-events: none;
    position: absolute;
    width: 42px;
    z-index: 3;
  }

  .video-ticket-grid {
    display: grid;
    grid-auto-columns: minmax(190px, 30vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-inline: 0;
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 28px 18px 34px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .video-ticket-grid::-webkit-scrollbar {
    display: none;
  }

  .video-ticket {
    scroll-snap-align: start;
  }

  .cinema-beam {
    display: none;
  }

  .reference-hero {
    padding-top: 140px;
  }

  .reference-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-toolbar {
    position: static;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 104px;
  }

  h1 {
    font-size: 50px;
  }

  .site-header {
    border-radius: 22px;
    padding: 8px 12px 8px 8px;
    top: 10px;
    width: calc(100% - 36px);
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    height: 44px;
    width: 44px;
  }

  .brand-mark img {
    height: 38px;
    width: 38px;
  }

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

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 84dvh;
  }

  .hero-content {
    top: 128px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: .92;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.48;
    max-width: 34ch;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    min-height: 48px;
    padding: 0 18px;
    width: 100%;
  }

  .compare-handle {
    display: none;
  }

  .compare {
    --split: 0%;
    pointer-events: none;
    touch-action: auto;
  }

  .compare::after {
    display: none;
  }

  .compare-after {
    clip-path: inset(0 0 0 0);
  }

  .section {
    padding: 70px 18px;
    scroll-margin-top: 104px;
  }

  .company-sticky,
  .estate-sticky {
    padding-top: 104px;
  }

  .estate-copy h2 {
    font-size: 42px;
  }

  .estate-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .estate-points span {
    width: 100%;
  }

  .estate-caption {
    bottom: 14px;
    gap: 8px;
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
  }

  .plant-lab {
    min-height: 720px;
  }

  .plant-svg {
    top: 47%;
    width: 92%;
  }

  .stat-a,
  .stat-b,
  .stat-c,
  .stat-d {
    left: 18px;
    right: auto;
  }

  .stat-a { top: 18px; }
  .stat-b { top: 112px; }
  .stat-c { bottom: 112px; }
  .stat-d { bottom: 18px; }

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

  .nursery-showcase {
    padding: 70px 18px;
    scroll-margin-top: 104px;
  }

  .showcase-stage {
    gap: 12px;
  }

  .showcase-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 1;
    padding: 12px;
  }

  .showcase-rail div {
    align-items: center;
    gap: 10px;
    grid-template-columns: 38px 1fr;
    justify-items: start;
    padding: 12px;
    text-align: left;
  }

  .showcase-rail i {
    font-size: 18px;
    height: 38px;
    width: 38px;
  }

  .showcase-rail strong {
    font-size: 28px;
  }

  .showcase-rail span {
    font-size: 12px;
  }

  .tree-panel {
    order: 2;
    padding: 20px;
  }

  .tree-title h2 {
    font-size: 38px;
  }

  .tree-title p {
    font-size: 14px;
  }

  .root-tree {
    max-height: 360px;
    max-width: 245px;
    width: 68%;
  }

  .tree-callout {
    border: 1px solid rgba(23, 63, 44, .12);
    border-radius: 16px;
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .showcase-side {
    order: 3;
  }

  .side-photo {
    display: none;
  }

  .side-metric,
  .side-service {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .side-metric strong {
    font-size: 32px;
  }

  .side-service {
    grid-template-columns: 42px 1fr;
  }

  .side-metric i,
  .side-service i {
    height: 42px;
    width: 42px;
  }

  .catalog-card {
    min-height: 430px;
  }

  .guide-card {
    min-height: 240px;
    padding: 24px;
  }

  .video-ticket-grid {
    grid-auto-columns: minmax(168px, 78vw);
    gap: 14px;
  }

  .video-cinema.reveal {
    opacity: 1;
    transform: none;
  }

  .cinema-copy h2 {
    font-size: 50px;
  }

  .cinema-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .video-ticket h3 {
    font-size: 14px;
  }

  .video-poster {
    aspect-ratio: 9 / 11;
  }

  .video-dialog {
    padding: 14px;
  }

  .showcase-stage,
  .showcase-rail,
  .showcase-side {
    grid-template-columns: 1fr;
  }

  .root-tree {
    width: 100%;
  }

  .reference-hero,
  .reference-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .reference-hero h1 {
    font-size: 46px;
  }

  .reference-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-stats div {
    padding: 22px;
  }

  .reference-stats strong {
    font-size: 34px;
  }

  .reference-item summary,
  .reference-item-body {
    padding: 22px;
  }

  .contact-actions {
    display: grid;
  }

  .contacts {
    padding: 104px 18px 70px;
    scroll-margin-top: 104px;
  }

  .contact-action {
    width: 100%;
  }

  .requisites-card dl div {
    grid-template-columns: 1fr;
  }

  .story-list strong,
  .story-list span {
    max-width: none;
  }

  .story-point::before {
    opacity: .34;
    right: -28px;
    top: -24px;
  }
}
