@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800&family=Figtree:wght@300;400;500;600;700&family=Ubuntu+Mono:wght@400;700&display=swap');

:root {
  --greenhouse-mist: #D8E2D6;
  --seedling-lime: #9FD356;
  --soil-cocoa: #5A3F35;
  --root-cream: #F4EFE6;
  --glass-blue: #C5D8E8;
  --humidity-silver: #B5C3C0;
  --clay-pot: #C07A5A;
  --leaf-shadow: #1A2A22;
  --grow-lilac: #E4DCF0;
  --condensation-x: 50%;
  --condensation-y: 50%;
  --font-display: 'Gabarito', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --font-meta: 'Ubuntu Mono', monospace;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --tray-radius: 18px;
  --dome-radius: 28px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--leaf-shadow);
  background: var(--root-cream);
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.meta-label {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--humidity-silver);
}

.stage-value {
  font-family: var(--font-meta);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--glass-blue);
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--seedling-lime);
  color: var(--leaf-shadow);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(159, 211, 86, 0.4);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--root-cream);
  opacity: 0.7;
  transition: var(--transition);
}

.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  width: 0;
  height: 2px;
  background: var(--leaf-shadow);
  transition: width 0.4s ease;
}

.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(159, 211, 86, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
  background: var(--root-cream);
}

.btn-primary:hover::after {
  width: calc(100% - 48px);
}

.btn-primary--dark {
  background: var(--leaf-shadow);
  color: var(--root-cream);
  border-color: rgba(26, 42, 34, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--seedling-lime);
  position: relative;
  padding-bottom: 4px;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--seedling-lime);
  transition: var(--transition);
}

.btn-secondary:hover::after {
  height: 2px;
  background: linear-gradient(90deg, var(--seedling-lime) 0%, var(--seedling-lime) 40%, transparent 40%, transparent 55%, var(--seedling-lime) 55%, var(--seedling-lime) 100%);
}

.nursery-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  overflow-x: clip;
  max-width: 100%;
}

.nursery-header--mist {
  background: rgba(216, 226, 214, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--humidity-silver);
}

.nursery-header--deep {
  background: rgba(26, 42, 34, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181, 195, 192, 0.2);
}

.nursery-header--deep .nav-tray-link,
.nursery-header--deep .header-status,
.nursery-header--deep .burger-line {
  color: var(--root-cream);
}

.nursery-header--deep .nav-tray-link {
  border-color: rgba(181, 195, 192, 0.3);
}

.nursery-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nursery-header__logo img {
  height: 42px;
  width: auto;
  border-radius: 8px;
}

.nav-tray {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-tray-link {
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--humidity-silver);
  border-radius: 6px;
  background: rgba(244, 239, 230, 0.5);
  transition: var(--transition);
}

.nav-tray-link:hover,
.nav-tray-link--active {
  background: var(--seedling-lime);
  border-color: var(--seedling-lime);
  color: var(--leaf-shadow);
}

.header-status {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: var(--soil-cocoa);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seedling-lime);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--leaf-shadow);
  transition: var(--transition);
}

.burger--active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger--active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger--active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--leaf-shadow);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav--open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-tray-link {
  font-size: 0.9rem;
  padding: 14px 28px;
  color: var(--root-cream);
  background: rgba(244, 239, 230, 0.08);
  border-color: rgba(181, 195, 192, 0.3);
}

body.menu-open {
  overflow: hidden !important;
}

.hero-bench {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at var(--condensation-x) var(--condensation-y), rgba(197, 216, 232, 0.4) 0%, transparent 50%),
    linear-gradient(165deg, var(--greenhouse-mist) 0%, var(--root-cream) 45%, var(--glass-blue) 100%);
}

.hero-bench::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/greenhouse-condensation.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.hero-bench__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative;
  align-items: start;
}

.hero-tray-lid {
  grid-column: 1 / 3;
  grid-row: 1;
  position: relative;
  background: rgba(244, 239, 230, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--dome-radius);
  padding: 48px 40px 40px;
  overflow: hidden;
}

.hero-tray-lid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(circle at var(--condensation-x) var(--condensation-y), rgba(197, 216, 232, 0.5) 0%, transparent 60%);
  pointer-events: none;
  transition: background 0.15s ease;
}

.hero-tray-lid__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--leaf-shadow);
  position: relative;
  z-index: 1;
  max-width: 70%;
}

.hero-tray-lid__title span {
  display: block;
}

.hero-tray-lid__title .title-tag {
  display: inline-block;
  background: var(--leaf-shadow);
  color: var(--seedling-lime);
  font-family: var(--font-meta);
  font-size: 0.35em;
  padding: 6px 14px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 12px;
  letter-spacing: 0.1em;
}

.hero-stage-anchor {
  position: absolute;
  right: 40px;
  top: 40px;
  text-align: right;
  z-index: 1;
}

.hero-stage-anchor .stage-label {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  color: var(--soil-cocoa);
  display: block;
}

.hero-visual {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  border-radius: var(--tray-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 42, 34, 0.15);
}

.hero-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-visual__caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-meta);
  font-size: 0.65rem;
  background: rgba(26, 42, 34, 0.8);
  color: var(--root-cream);
  padding: 6px 10px;
  border-radius: 4px;
}

.hero-nursery-note {
  grid-column: 1;
  grid-row: 2;
  background: var(--root-cream);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--tray-radius);
  padding: 28px;
  transform: translateY(20px);
  opacity: 0;
  animation: note-slide 0.8s ease 0.4s forwards;
}

@keyframes note-slide {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-nursery-note p {
  font-size: 1.05rem;
  color: var(--soil-cocoa);
  margin-bottom: 20px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  grid-column: 1 / 3;
}

.growth-lock-chip {
  font-family: var(--font-meta);
  font-size: 0.68rem;
  padding: 8px 14px;
  background: var(--leaf-shadow);
  color: var(--seedling-lime);
  border-radius: 4px;
  border-left: 3px solid var(--seedling-lime);
  opacity: 0;
  transform: translateY(10px);
  animation: chip-insert 0.5s ease forwards;
}

.growth-lock-chip:nth-child(1) { animation-delay: 0.6s; }
.growth-lock-chip:nth-child(2) { animation-delay: 0.75s; }
.growth-lock-chip:nth-child(3) { animation-delay: 0.9s; }

@keyframes chip-insert {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  grid-column: 1 / 3;
}

.hero-root-line {
  grid-column: 1 / 3;
  width: 100%;
  height: 40px;
  margin-top: 16px;
}

.hero-root-line svg {
  width: 100%;
  height: 100%;
}

.hero-root-line path {
  stroke: var(--seedling-lime);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: root-grow 2s ease 1s forwards;
}

@keyframes root-grow {
  to { stroke-dashoffset: 0; }
}

.growth-marker-strip {
  padding: 40px 0;
  background: var(--leaf-shadow);
  overflow: hidden;
  max-width: 100%;
}

.growth-marker-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.growth-marker-tag {
  font-family: var(--font-meta);
  font-size: 0.72rem;
  padding: 10px 18px;
  background: rgba(216, 226, 214, 0.1);
  border: 1px solid var(--humidity-silver);
  color: var(--root-cream);
  border-radius: 6px;
  white-space: nowrap;
}

.fragile-start {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--greenhouse-mist);
}

.fragile-start::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('../images/soil-cells.jpg') center/cover;
  opacity: 0.06;
  pointer-events: none;
}

.fragile-tray-panel {
  background: rgba(244, 239, 230, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--dome-radius);
  padding: 48px;
  margin-bottom: 40px;
  max-width: 720px;
}

.fragile-tray-panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--leaf-shadow);
}

.fragile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.fragile-cards::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--seedling-lime), transparent);
}

.nursery-note-card {
  background: var(--root-cream);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--tray-radius);
  padding: 28px;
  transition: var(--transition);
}

.nursery-note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 42, 34, 0.1);
}

.nursery-note-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--soil-cocoa);
}

.nursery-note-card p {
  font-size: 0.95rem;
  color: var(--leaf-shadow);
}

.rooted-outputs {
  padding: 100px 0;
  background: var(--root-cream);
  overflow: hidden;
}

.rooted-outputs h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 48px;
  max-width: 500px;
}

.output-bench {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
}

.output-primary {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--dome-radius);
  overflow: hidden;
  background: var(--leaf-shadow);
}

.output-primary img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.85;
}

.output-primary__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(26, 42, 34, 0.95));
  color: var(--root-cream);
}

.output-primary__content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.output-set {
  border-radius: var(--tray-radius);
  overflow: hidden;
  background: var(--greenhouse-mist);
  border: 1px solid var(--humidity-silver);
  transition: var(--transition);
}

.output-set:hover {
  transform: translateY(-3px);
}

.output-set img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.output-set__body {
  padding: 20px;
}

.output-set__body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.output-set__meta {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: var(--soil-cocoa);
}

.root-thesis {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--leaf-shadow) 0%, #243528 50%, var(--glass-blue) 100%);
  position: relative;
  overflow: hidden;
}

.root-thesis__headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--root-cream);
  max-width: 800px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.root-thesis__card {
  background: var(--root-cream);
  border-radius: var(--tray-radius);
  padding: 36px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.root-thesis__annotation {
  position: absolute;
  right: 10%;
  top: 30%;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  color: var(--seedling-lime);
  writing-mode: vertical-rl;
  opacity: 0.7;
}

.service-trays {
  padding: 100px 0;
  background: var(--greenhouse-mist);
  overflow: hidden;
}

.service-trays h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.service-trays__intro {
  max-width: 600px;
  margin-bottom: 56px;
  color: var(--soil-cocoa);
}

.tray-bench {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  position: relative;
}

.service-tray {
  background: rgba(244, 239, 230, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--tray-radius);
  padding: 28px;
  flex: 1 1 280px;
  transition: var(--transition);
  position: relative;
}

.service-tray--large {
  flex: 1 1 380px;
  padding: 36px;
  background: rgba(244, 239, 230, 0.9);
}

.service-tray--medium {
  flex: 1 1 320px;
}

.service-tray:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 42, 34, 0.12);
  border-color: var(--seedling-lime);
}

.service-tray__stage {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: var(--clay-pot);
  margin-bottom: 10px;
}

.service-tray h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-tray p {
  font-size: 0.92rem;
  color: var(--soil-cocoa);
  margin-bottom: 16px;
}

.service-tray__path {
  font-family: var(--font-meta);
  font-size: 0.62rem;
  color: var(--humidity-silver);
}

.growth-proof {
  padding: 100px 0;
  background: var(--root-cream);
  overflow: hidden;
}

.growth-proof__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.proof-block {
  padding: 40px;
  border-radius: var(--dome-radius);
}

.proof-block--fragile {
  background: var(--greenhouse-mist);
  border: 1px dashed var(--humidity-silver);
}

.proof-block--rooted {
  background: var(--leaf-shadow);
  color: var(--root-cream);
}

.proof-block h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.proof-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-marker {
  font-family: var(--font-meta);
  font-size: 0.68rem;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(159, 211, 86, 0.15);
  color: var(--seedling-lime);
}

.proof-block--fragile .proof-marker {
  background: rgba(90, 63, 53, 0.1);
  color: var(--soil-cocoa);
}

.counter-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.counter-item {
  text-align: left;
}

.counter-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--seedling-lime);
  line-height: 1;
}

.counter-label {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: var(--humidity-silver);
  margin-top: 6px;
}

.about-nursery {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--root-cream) 0%, var(--greenhouse-mist) 100%);
  overflow: hidden;
}

.about-nursery__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-nursery__image {
  border-radius: var(--dome-radius);
  overflow: hidden;
  position: relative;
}

.about-nursery__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-nursery__image .root-caption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-meta);
  font-size: 0.65rem;
  background: var(--leaf-shadow);
  color: var(--seedling-lime);
  padding: 8px 12px;
  border-radius: 4px;
}

.germination-sequence {
  padding: 100px 0;
  background: var(--leaf-shadow);
  color: var(--root-cream);
  overflow: hidden;
}

.germination-sequence h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 56px;
  color: var(--root-cream);
}

.sequence-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

.sequence-step {
  flex: 1 1 140px;
  background: rgba(216, 226, 214, 0.08);
  border: 1px solid rgba(181, 195, 192, 0.25);
  border-radius: var(--tray-radius);
  padding: 24px 20px;
  transition: var(--transition);
}

.sequence-step:hover {
  background: rgba(159, 211, 86, 0.1);
  border-color: var(--seedling-lime);
}

.sequence-step__num {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: var(--seedling-lime);
  margin-bottom: 8px;
}

.sequence-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.sequence-step p {
  font-size: 0.85rem;
  color: var(--humidity-silver);
}

.tray-marquee {
  padding: 48px 0;
  background: var(--greenhouse-mist);
  overflow: hidden;
  max-width: 100vw;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.marquee-track--reverse {
  animation: marquee-right 35s linear infinite;
  margin-top: 12px;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-tag {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  padding: 10px 24px;
  margin: 0 8px;
  background: var(--root-cream);
  border: 1px solid var(--humidity-silver);
  border-radius: 4px;
  white-space: nowrap;
  color: var(--soil-cocoa);
}

.roots-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(216, 226, 214, 0.9) 0%, rgba(244, 239, 230, 0.95) 100%),
    url('../images/nursery-bench.jpg') center/cover;
}

.roots-cta__dome {
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--dome-radius);
  padding: 64px 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.roots-cta__dome h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.roots-cta__dome p {
  color: var(--soil-cocoa);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-preview {
  padding: 80px 0;
  background: var(--root-cream);
  overflow: hidden;
}

.contact-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-preview__info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 16px;
}

.contact-detail__label {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: var(--humidity-silver);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 1.05rem;
  color: var(--leaf-shadow);
}

.contact-preview__map {
  border-radius: var(--tray-radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--humidity-silver);
}

.contact-preview__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.footer-tray {
  background: var(--leaf-shadow);
  color: var(--root-cream);
  padding: 64px 0 32px;
  overflow: hidden;
}

.footer-tray__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-tray__brand p {
  font-size: 0.9rem;
  color: var(--humidity-silver);
  margin-top: 16px;
  max-width: 280px;
}

.footer-tray h4 {
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--seedling-lime);
  margin-bottom: 20px;
}

.footer-tray ul li {
  margin-bottom: 10px;
}

.footer-tray ul a {
  font-size: 0.9rem;
  color: var(--humidity-silver);
  transition: var(--transition);
}

.footer-tray ul a:hover {
  color: var(--seedling-lime);
}

.footer-tray__bottom {
  border-top: 1px solid rgba(181, 195, 192, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  color: var(--humidity-silver);
}

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

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

.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--greenhouse-mist) 0%, var(--root-cream) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero--dark {
  background: linear-gradient(165deg, var(--leaf-shadow) 0%, #2a3d32 100%);
  color: var(--root-cream);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  max-width: 700px;
}

.page-hero p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--soil-cocoa);
}

.page-hero--dark p {
  color: var(--humidity-silver);
}

.page-content {
  padding: 80px 0;
  overflow: hidden;
}

.page-content--legal {
  background: var(--root-cream);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--leaf-shadow);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--soil-cocoa);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--leaf-shadow);
}

.legal-content ul, .legal-content ol {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.contact-form-section {
  padding: 80px 0;
  background: var(--greenhouse-mist);
  overflow: hidden;
}

.growth-request-form {
  background: var(--root-cream);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--dome-radius);
  padding: 48px;
  max-width: 640px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soil-cocoa);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--humidity-silver);
  border-radius: 10px;
  background: var(--greenhouse-mist);
  color: var(--leaf-shadow);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--seedling-lime);
  box-shadow: 0 0 0 3px rgba(159, 211, 86, 0.2);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--clay-pot);
}

.form-error {
  font-family: var(--font-meta);
  font-size: 0.68rem;
  color: var(--clay-pot);
  margin-top: 6px;
  display: none;
}

.form-error--visible {
  display: block;
}

.faq-section {
  padding: 80px 0;
  background: var(--root-cream);
  overflow: hidden;
}

.faq-item {
  border: 1px solid var(--humidity-silver);
  border-radius: var(--tray-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--greenhouse-mist);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--leaf-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(159, 211, 86, 0.1);
}

.faq-question__icon {
  font-family: var(--font-meta);
  font-size: 1.2rem;
  color: var(--seedling-lime);
  transition: transform 0.3s ease;
}

.faq-item--open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 24px 20px;
  color: var(--soil-cocoa);
  font-size: 0.95rem;
}

.faq-item--open .faq-answer {
  max-height: 500px;
}

.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  background: linear-gradient(165deg, var(--greenhouse-mist) 0%, var(--root-cream) 100%);
  text-align: center;
}

.thanks-panel {
  background: rgba(244, 239, 230, 0.9);
  border: 1px solid var(--humidity-silver);
  border-radius: var(--dome-radius);
  padding: 64px 48px;
  max-width: 560px;
}

.thanks-panel h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.thanks-panel p {
  color: var(--soil-cocoa);
  margin-bottom: 32px;
}

.services-map {
  padding: 60px 0;
  overflow: hidden;
}

.service-group {
  margin-bottom: 60px;
}

.service-group h2 {
  font-family: var(--font-meta);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay-pot);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--humidity-silver);
}

.portfolio-bench {
  padding: 60px 0;
  overflow: hidden;
}

.portfolio-bench:nth-child(even) {
  background: var(--greenhouse-mist);
}

.portfolio-bench__header {
  margin-bottom: 40px;
}

.portfolio-bench__header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.bench-layout-a {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.bench-layout-b {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
}

.bench-layout-c {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bench-case {
  border-radius: var(--tray-radius);
  overflow: hidden;
  background: var(--root-cream);
  border: 1px solid var(--humidity-silver);
}

.bench-case img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bench-case__body {
  padding: 24px;
}

.bench-case__stage {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: var(--clay-pot);
  margin-bottom: 8px;
}

.bench-case h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.bench-case p {
  font-size: 0.9rem;
  color: var(--soil-cocoa);
}

@media (max-width: 1024px) {
  .nav-tray, .header-status, .header-actions .btn-primary {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-bench__grid {
    grid-template-columns: 1fr;
  }

  .hero-tray-lid {
    grid-column: 1;
  }

  .hero-tray-lid__title {
    max-width: 100%;
  }

  .hero-visual, .hero-nursery-note {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-stage-anchor {
    position: relative;
    right: auto;
    top: auto;
    text-align: left;
    margin-top: 20px;
  }

  .fragile-cards {
    grid-template-columns: 1fr;
  }

  .output-bench {
    grid-template-columns: 1fr;
  }

  .output-primary {
    grid-row: auto;
  }

  .growth-proof__grid {
    grid-template-columns: 1fr;
  }

  .about-nursery__layout {
    grid-template-columns: 1fr;
  }

  .contact-preview__grid {
    grid-template-columns: 1fr;
  }

  .footer-tray__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bench-layout-a, .bench-layout-b, .bench-layout-c {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) and (hover: hover) {
  .parallax-layer {
    transition: transform 0.1s ease-out;
  }
}

@media (max-width: 1024px), (hover: none) {
  .hero-bench {
    background:
      linear-gradient(165deg, var(--greenhouse-mist) 0%, var(--root-cream) 45%, var(--glass-blue) 100%);
  }
}

@media (max-width: 640px) {
  .hero-chips, .hero-cta-row, .hero-root-line {
    grid-column: 1;
  }

  .tray-bench {
    flex-direction: column;
  }

  .service-tray, .service-tray--large, .service-tray--medium {
    flex: 1 1 100%;
  }

  .sequence-steps {
    flex-direction: column;
  }

  .footer-tray__grid {
    grid-template-columns: 1fr;
  }

  .counter-row {
    flex-direction: column;
    gap: 20px;
  }

  .growth-request-form {
    padding: 28px;
  }
}
