:root {
  --bg: #f6f8f1;
  --bg-soft: #f0f5e7;
  --panel: rgba(255, 255, 255, 0.94);
  --text: #173325;
  --muted: #5f7567;
  --accent: #8dbb60;
  --accent-strong: #2f6a4a;
  --border: rgba(23, 51, 37, 0.12);
  --shadow: 0 20px 40px rgba(23, 51, 37, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 187, 96, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  isolation: isolate;
}

.scroll-video-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-soft);
}

#scroll-video-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.scroll-video-background__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 248, 241, 0.68) 0%, rgba(246, 248, 241, 0.3) 48%, rgba(246, 248, 241, 0.12) 100%),
    linear-gradient(180deg, rgba(246, 248, 241, 0.08), rgba(246, 248, 241, 0.28));
}

.home-page .navbar {
  z-index: 1000;
}

.home-page main,
.home-page .footer {
  z-index: 2;
}

.home-page .navbar {
  background: rgba(255, 255, 255, 0.56);
}

.home-page .hero-copy,
.home-page .section-heading {
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.88);
}

.home-page .stats > div,
.home-page .product-card,
.home-page .gallery-card,
.home-page .process-card {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px);
}

.home-page .hero-visual {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.home-page .hero-visual__card {
  background: rgba(255, 255, 255, 0.62);
}

body main {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

body.page-ready main {
  opacity: 1;
  transform: translateY(0);
}

body.is-transitioning main {
  opacity: 0;
  transform: translateY(18px);
}

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

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

.sketch-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sketch-item {
  position: absolute;
  transform: translate3d(0, 0, 0) rotate(var(--sketch-rotate, 0deg)) scale(var(--sketch-scale, 1));
  opacity: 0.08;
  will-change: transform, opacity;
  filter: saturate(0.72) drop-shadow(0 12px 18px rgba(23, 51, 37, 0.09));
  transition: opacity 420ms ease, transform 420ms ease;
}

.sketch-item svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.sketch-item path {
  fill: none;
  stroke: rgba(47, 106, 74, 0.62);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 80ms linear;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(23, 51, 37, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark,
.brand-logo {
  display: block;
  transition: transform 220ms ease;
}

.brand-mark {
  height: 3em;
  width: auto;
}

.brand-logo {
  height: 1.5em;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(141, 187, 96, 0.14);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.section {
  padding: 4.5rem 0;
}

.hero {
  position: relative;
  display: grid;
  width: 100vw;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  min-height: clamp(620px, 82svh, 840px);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.hero > .hero-copy,
.hero > .nursery-slider {
  grid-column: 1;
  grid-row: 1;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: end;
  width: min(720px, calc(100% - 3rem));
  margin: 0 0 clamp(5.5rem, 9vh, 7.5rem) max(1.5rem, calc((100vw - 1180px) / 2));
  padding: 0;
}

.home-page .hero-copy {
  text-shadow: none;
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  color: #d8efbd;
  font-size: 0.76rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-copy .eyebrow span {
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: white;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.hero-copy .hero-text {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-copy .button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(12, 39, 26, 0.3);
  color: white;
  backdrop-filter: blur(8px);
}

.hero-copy .button--primary {
  background: white;
  color: var(--accent-strong);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.2em;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.82rem;
  color: var(--accent-strong);
  font-weight: 700;
}

h1 {
  margin-top: 0.2em;
  margin: 0;
  line-height: 1.08;
}

h2,
h3 {
  padding-top: 0.5em;
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: 3em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.hero-text,
p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 1.2rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 15px 30px rgba(47, 106, 74, 0.2);
}

.button--ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  background: rgba(141, 187, 96, 0.14);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-visual,
.about-visual {
  position: relative;
  min-height: 460px;
  border-radius: 2rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(240,245,231,0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.nursery-slider {
  width: 100%;
  min-height: 100%;
  padding: 0;
  background: #183b2b;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-logo-overlay {
  position: absolute;
  top: 50%;
  right: max(2rem, calc((100vw - 1180px) / 2));
  z-index: 3;
  width: clamp(185px, 19vw, 255px);
  max-width: calc(100% - 4rem);
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 1;
  filter:
    drop-shadow(1px 0 0 rgba(255, 255, 255, 0.94))
    drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.94))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.94))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.94))
    drop-shadow(0 10px 24px rgba(7, 24, 15, 0.42));
}

.nursery-slider::before {
  content: none;
}

.nursery-slider__viewport,
.nursery-slide,
.nursery-slide::after {
  position: absolute;
  inset: 0;
}

.nursery-slide {
  margin: 0;
  opacity: 0;
  transform: none;
  transition: opacity 800ms ease;
  pointer-events: none;
}

.nursery-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.nursery-slide::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 24, 15, 0.08) 24%, rgba(7, 24, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 24, 15, 0.62) 0%, rgba(7, 24, 15, 0.16) 58%, transparent 82%);
}

.nursery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nursery-slide figcaption {
  position: absolute;
  z-index: 2;
  top: 2rem;
  right: max(1.5rem, calc((100vw - 1180px) / 2));
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(7, 24, 15, 0.2);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.nursery-slide figcaption span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.nursery-slider__controls {
  position: absolute;
  z-index: 3;
  right: max(1.5rem, calc((100vw - 1180px) / 2));
  bottom: 2rem;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.slider-arrow,
.slider-dot {
  border: 0;
  color: white;
  cursor: pointer;
}

.slider-arrow {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(7, 24, 15, 0.36);
  font-size: 1.15rem;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease;
}

.slider-arrow:hover {
  transform: scale(1.08);
  background: var(--accent-strong);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 24, 15, 0.28);
  backdrop-filter: blur(10px);
}

.slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 220ms ease, background 220ms ease;
}

.slider-dot.is-active {
  width: 1.8rem;
  background: white;
}

.slider-arrow:focus-visible,
.slider-dot:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

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

.hero-visual__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(141, 187, 96, 0.18), transparent 32%);
}

.hero-visual__card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 51, 37, 0.08);
}

.hero-visual__statement {
  max-width: 24rem;
  margin: 0.5rem auto 0;
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.hero-logo {
  width: min(100%, 320px);
  margin: 0 auto;
}

.image-slot {
  position: relative;
  min-height: 230px;
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(141, 187, 96, 0.25), rgba(47, 106, 74, 0.14)),
    linear-gradient(90deg, rgba(255,255,255,0.8), transparent 70%);
  border: 1px solid rgba(23, 51, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.slot-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(23, 51, 37, 0.12));
}

.image-slot span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(23, 51, 37, 0.08);
  text-align: center;
}

.image-slot::before,
.image-slot::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
}

.image-slot::before {
  width: 180px;
  height: 180px;
  top: 20px;
  left: 25px;
  filter: blur(1px);
}

.image-slot::after {
  width: 110px;
  height: 110px;
  right: 20px;
  bottom: 15px;
  background: rgba(255,255,255,0.42);
}

.image-slot span {
  z-index: 2;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(23, 51, 37, 0.08);
}

.image-slot--small {
  min-height: 170px;
}

.image-slot--alt {
  background:
    linear-gradient(135deg, rgba(255, 208, 125, 0.32), rgba(47, 106, 74, 0.12));
}

.image-slot--accent {
  background:
    linear-gradient(135deg, rgba(167, 120, 224, 0.17), rgba(47, 106, 74, 0.14));
}

.card-kicker,
.promise-index {
  display: inline-block;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.promise-index {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 51, 37, 0.08);
  box-shadow: 0 10px 25px rgba(23, 51, 37, 0.08);
  font-weight: 600;
}

.floating-card--top {
  top: 1rem;
  right: 1rem;
  animation: bob 4s ease-in-out infinite;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stats > div {
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent-strong);
}

.nursery-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.nursery-story__copy {
  padding-left: clamp(0rem, 2vw, 1.5rem);
}

.nursery-story__copy > p:not(.eyebrow) {
  max-width: 34rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
  color: var(--accent-strong);
  font-weight: 800;
}

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

.text-link:hover span {
  transform: translateX(0.35rem);
}

.nursery-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 190px 190px;
  gap: 0.85rem;
}

.nursery-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1.4rem;
  box-shadow: 0 20px 50px rgba(23, 51, 37, 0.16);
}

.nursery-photo--wide {
  grid-row: 1 / 3;
}

.nursery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nursery-photo:hover img {
  transform: scale(1.05);
}

.nursery-photo figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(16, 47, 32, 0.68);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.card-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card,
.process-card,
.contact-card,
.gallery-card {
  padding: 1.3rem;
  border-radius: 1.3rem;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.3rem;
  background: var(--panel);
  border: 1px solid var(--border);
}

.contact-form label {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(23, 51, 37, 0.12);
  background: rgba(255,255,255,0.8);
  color: var(--text);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(23, 51, 37, 0.45);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem 2rem;
  text-align: center;
  color: var(--muted);
}

.footer-credit {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
}

.footer-credit a {
  color: var(--accent-strong);
  font-weight: 700;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: underline;
}

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

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

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .hero,
  .nursery-story,
  .contact-layout,
  .card-grid,
  .gallery-grid,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(560px, 66svh, 680px);
    padding: 0;
  }

  .hero-copy {
    width: min(540px, calc(100% - 4rem));
    margin: 0 2rem 4rem;
  }

  .nursery-slider {
    min-height: 100%;
  }

  .hero-logo-overlay {
    display: block;
    top: 1.5rem;
    right: 1.5rem;
    width: clamp(132px, 17vw, 185px);
    max-width: calc(42% - 1.5rem);
    transform: none;
  }

  .nursery-slide figcaption {
    top: auto;
    right: auto;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .nursery-slider__controls {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .nursery-story__copy {
    max-width: 42rem;
  }

  .sketch-item {
    opacity: 0.06;
  }

  h1 {
  font-size: 1.5em;
  line-height: 1.3;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: clamp(560px, 72svh, 680px);
  }

  .hero-copy {
    width: calc(100% - 2.5rem);
    max-width: 760px;
    margin: 0 1.25rem 5rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-copy .hero-text {
    max-width: 34rem;
  }

  .hero-logo-overlay {
    display: none;
  }

  .nursery-slide figcaption {
    top: auto;
    right: auto;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .nursery-slider__controls {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 1084px) {
  .hero {
    grid-template-rows: 1fr;
    min-height: clamp(620px, calc(100svh - 72px), 760px);
    padding: 0;
  }

  .hero > .nursery-slider,
  .hero > .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-copy {
    width: calc(100% - 2.5rem);
    margin: 0 1.25rem 6.5rem;
    padding: 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 11vw, 3.4rem);
    line-height: 1;
  }

  .hero-copy .hero-text {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-copy .eyebrow {
    gap: 0.55rem;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
  }

  .hero-copy .eyebrow span {
    padding-left: 0.55rem;
  }

  .nursery-slider {
    min-height: 100%;
    border-radius: 0;
  }

  .hero-logo-overlay {
    display: none;
  }

  .nursery-slide::after {
    background:
      linear-gradient(180deg, rgba(7, 24, 15, 0.1) 22%, rgba(7, 24, 15, 0.82) 100%),
      linear-gradient(90deg, rgba(7, 24, 15, 0.56) 0%, rgba(7, 24, 15, 0.1) 70%, transparent 100%);
  }

  .nursery-slide figcaption {
    top: 1rem;
    right: auto;
    bottom: auto;
    left: 1.25rem;
  }

  .nursery-slider__controls {
    right: 1.25rem;
    bottom: 1.25rem;
    justify-content: flex-end;
  }
}

@media (max-width: 700px) {
  .sketch-layer {
    opacity: 0.72;
  }

  .navbar {
    padding: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    display: none;
  }

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

  .section {
    padding: 3rem 0;
  }

  .hero-logo-overlay {
    display: none;
    top: 1.4rem;
    right: 1.25rem;
    width: clamp(118px, 30vw, 150px);
    max-width: calc(50% - 1.5rem);
    transform: none;
  }

  .nursery-slider::before {
    content: none;
  }

  .nursery-slide::after {
    background:
      linear-gradient(180deg, rgba(7, 24, 15, 0.1) 22%, rgba(7, 24, 15, 0.82) 100%),
      linear-gradient(90deg, rgba(7, 24, 15, 0.56) 0%, rgba(7, 24, 15, 0.1) 70%, transparent 100%);
  }

  .nursery-slide figcaption {
    top: 1rem;
    right: auto;
    bottom: auto;
    left: 1.25rem;
  }

  .nursery-slider__controls {
    right: 1.25rem;
    bottom: 1.25rem;
    justify-content: flex-end;
  }

  .nursery-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 160px;
  }

  .nursery-photo--wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 440px) {
  .hero {
    min-height: 680px;
  }

  .hero-copy {
    margin-bottom: 6.2rem;
  }

  .hero-copy .eyebrow span {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 11.5vw, 2.9rem);
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-copy .button {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .nursery-slide figcaption {
    max-width: calc(100% - 2rem);
    font-size: 0.68rem;
  }

  .slider-arrow {
    width: 2.7rem;
    height: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nursery-slide,
  .nursery-photo img,
  .slider-arrow,
  .slider-dot {
    transition-duration: 1ms;
  }
}

/* Gallery page */
.gallery-page {
  background: #f5f4ed;
}

.gallery-page main {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

.gallery-page .sketch-layer {
  display: none;
}

.gallery-hero {
  position: relative;
  min-height: clamp(610px, 78svh, 820px);
  overflow: hidden;
  background: #102a1e;
  isolation: isolate;
}

.gallery-hero__image,
.gallery-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center 66%;
  transform: scale(1.015);
}

.gallery-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 27, 17, 0.92) 0%, rgba(7, 27, 17, 0.72) 37%, rgba(7, 27, 17, 0.08) 76%),
    linear-gradient(180deg, rgba(7, 27, 17, 0.04) 36%, rgba(7, 27, 17, 0.76) 100%);
}

.gallery-hero__content {
  position: absolute;
  left: max(1.5rem, calc((100vw - 1180px) / 2));
  bottom: clamp(3.4rem, 8vh, 6.2rem);
  width: min(700px, calc(100% - 3rem));
  color: white;
}

.gallery-kicker {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gallery-hero .gallery-kicker {
  color: #cceba8;
}

.gallery-hero h1 {
  max-width: 12ch;
  margin: 0 0 1.15rem;
  color: white;
  font-size: clamp(3.35rem, 6.3vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
  text-wrap: balance;
}

.gallery-hero__content > p:not(.gallery-kicker) {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.gallery-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.82rem 1rem 0.82rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: gap 180ms ease, background 180ms ease;
}

.gallery-hero__link:hover {
  gap: 1.35rem;
  background: rgba(255, 255, 255, 0.18);
}

.gallery-hero__detail {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1180px) / 2));
  bottom: clamp(3.4rem, 8vh, 6.2rem);
  display: grid;
  grid-template-columns: repeat(2, 138px);
  gap: 0.8rem;
}

.gallery-hero__detail figure {
  margin: 0;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.gallery-hero__detail img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 0.8rem;
  object-fit: cover;
}

.gallery-hero__detail figcaption {
  padding: 0.65rem 0.3rem 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-intro {
  display: grid;
  width: min(1180px, calc(100% - 3rem));
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: end;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0 2.2rem;
}

.gallery-intro h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.gallery-intro__aside > p {
  max-width: 510px;
  margin: 0 0 0.35rem;
}

.gallery-availability {
  display: grid;
  gap: 0.45rem;
  max-width: 510px;
  margin-top: 1.5rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(76, 125, 53, 0.3);
  border-radius: 0.8rem;
  background: rgba(222, 239, 198, 0.5);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.gallery-availability strong {
  font-size: 0.95rem;
}

.gallery-availability a {
  width: fit-content;
  margin-top: 0.15rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-availability a:hover {
  color: var(--ink);
}

.collection-nav {
  position: sticky;
  top: 81px;
  z-index: 20;
  display: grid;
  width: min(1180px, calc(100% - 3rem));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto 2rem;
  border: 1px solid rgba(23, 51, 37, 0.12);
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(248, 248, 242, 0.9);
  box-shadow: 0 16px 45px rgba(23, 51, 37, 0.1);
  backdrop-filter: blur(18px);
}

#collection-nav {
  scroll-margin-top: 100px;
}

.collection-nav a {
  display: flex;
  min-width: 0;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-right: 1px solid rgba(23, 51, 37, 0.1);
  transition: color 180ms ease, background 180ms ease;
}

.collection-nav a:last-child {
  border-right: 0;
}

.collection-nav a:hover {
  background: rgba(141, 187, 96, 0.13);
  color: var(--accent-strong);
}

.collection-nav__number {
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
}

.collection-nav a > span:last-child {
  display: grid;
  min-width: 0;
  gap: 0.22rem;
}

.collection-nav strong,
.collection-nav small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-nav strong {
  font-size: 0.82rem;
}

.collection-nav small {
  color: var(--muted);
  font-size: 0.65rem;
}

.gallery-collections {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.plant-collection {
  --collection-wash: rgba(141, 187, 96, 0.1);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  scroll-margin-top: 165px;
  border-top: 1px solid rgba(23, 51, 37, 0.12);
}

.plant-collection--grasses {
  --collection-wash: rgba(203, 190, 118, 0.16);
}

.plant-collection--agaves {
  --collection-wash: rgba(116, 169, 164, 0.14);
}

.plant-collection--shrubs {
  --collection-wash: rgba(183, 120, 100, 0.1);
}

.plant-collection__heading {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 2.4rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(23, 51, 37, 0.09);
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, var(--collection-wash), rgba(255, 255, 255, 0.76)),
    #f8f8f3;
}

.plant-collection__number {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(47, 106, 74, 0.25);
  border-radius: 50%;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.plant-collection__heading h2 {
  max-width: 14ch;
  margin: 0;
  padding: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.plant-collection__heading > p:last-child {
  max-width: 440px;
  margin: 1.5rem 0 0;
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.plant-card {
  grid-column: span 4;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 34px rgba(23, 51, 37, 0.08);
  text-align: left;
  transition: transform 230ms ease, box-shadow 230ms ease;
}

.plant-card__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.plant-card--featured {
  grid-column: span 8;
}

.plant-card:hover,
.plant-card:has(.plant-card__open:focus-visible) {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(23, 51, 37, 0.16);
}

.plant-card__open:focus-visible {
  outline: 3px solid rgba(47, 106, 74, 0.45);
  outline-offset: -3px;
}

.plant-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #dfe7d9;
}

.plant-card__media--wide {
  aspect-ratio: 4 / 3;
}

.plant-card__media--tall {
  aspect-ratio: 4 / 5;
}

.plant-card__media--feature {
  aspect-ratio: 16 / 10;
}

.plant-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(5, 24, 15, 0.24));
  pointer-events: none;
}

.plant-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plant-card__media--trimmed img {
  transform: scale(var(--photo-scale, 1.1));
  transform-origin: center top;
}

.plant-card--quality .plant-card__media img {
  object-position: center 66%;
}

.plant-card:hover .plant-card__media:not(.plant-card__media--trimmed) img {
  transform: scale(1.035);
}

.plant-card:hover .plant-card__media--trimmed img {
  transform: scale(calc(var(--photo-scale, 1.1) * 1.035));
}

.plant-card__view {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 1;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(9, 35, 22, 0.65);
  color: white;
  font-size: 0.66rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.plant-card:hover .plant-card__view,
.plant-card:has(.plant-card__open:focus-visible) .plant-card__view {
  opacity: 1;
  transform: translateY(0);
}

.plant-card__caption {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.05rem 0.7rem;
}

.plant-card__caption strong {
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  line-height: 1.25;
}

.plant-card__caption em {
  color: var(--accent-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.91rem;
  line-height: 1.35;
}

.plant-card__family {
  width: fit-content;
  margin-bottom: 0.25rem;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  background: rgba(141, 187, 96, 0.14);
  color: var(--accent-strong);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plant-card__size {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.plant-card__consultation,
.collection-back-to-nav,
.plant-lightbox__consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(47, 106, 74, 0.2);
  border-radius: 999px;
  background: rgba(141, 187, 96, 0.13);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.plant-card__consultation {
  margin: 0 1.05rem 1.15rem;
  padding: 0.6rem 0.78rem;
}

.collection-back-to-nav {
  display: none;
  margin-top: 2rem;
  padding: 0.72rem 0.95rem;
}

.plant-lightbox__consultation {
  align-self: flex-start;
  margin-top: 1.5rem;
  padding: 0.72rem 0.95rem;
}

.plant-card__consultation:hover,
.plant-card__consultation:focus-visible,
.collection-back-to-nav:hover,
.collection-back-to-nav:focus-visible,
.plant-lightbox__consultation:hover,
.plant-lightbox__consultation:focus-visible {
  border-color: rgba(47, 106, 74, 0.42);
  background: rgba(141, 187, 96, 0.25);
  transform: translateY(-2px);
}

.plant-lightbox {
  width: min(1080px, calc(100% - 2rem));
  max-width: none;
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 1.4rem;
  overflow: visible;
  background: #f7f7f1;
  box-shadow: 0 35px 110px rgba(3, 18, 10, 0.45);
}

.plant-lightbox::backdrop {
  background: rgba(3, 18, 10, 0.82);
  backdrop-filter: blur(8px);
}

.plant-lightbox figure {
  display: grid;
  min-height: min(720px, calc(100svh - 3rem));
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
}

.plant-lightbox__image-wrap {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: auto;
  background: #10261b;
}

.plant-lightbox__image-wrap img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 3rem);
  object-fit: contain;
  transition: transform 220ms ease;
}

.plant-lightbox__image-wrap--trimmed img {
  transform: scale(var(--photo-scale, 1.1));
  transform-origin: center top;
}

.plant-lightbox figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.2rem);
}

.plant-lightbox__collection {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plant-lightbox h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.plant-lightbox__botanical {
  margin: 0.8rem 0 1.6rem;
  color: var(--accent-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-style: italic;
}

.plant-lightbox__meta {
  display: grid;
  gap: 0.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.plant-lightbox__close,
.plant-lightbox__arrow {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(8, 31, 20, 0.72);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.plant-lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 2.7rem;
  height: 2.7rem;
  font-size: 1.5rem;
}

.plant-lightbox__arrow {
  top: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.plant-lightbox__arrow--previous {
  left: 1rem;
}

.plant-lightbox__arrow--next {
  right: calc(36% + 1rem);
}

.gallery-noscript {
  width: min(1180px, calc(100% - 3rem));
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 0.8rem;
  background: white;
}

@media (max-width: 980px) {
  .gallery-hero__detail {
    display: none;
  }

  .gallery-hero__content {
    width: min(700px, calc(100% - 3rem));
  }

  .collection-nav {
    top: 79px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-nav a:nth-child(2) {
    border-right: 0;
  }

  .collection-nav a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 51, 37, 0.1);
  }

  .plant-collection__heading {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .plant-collection__heading > p:last-child {
    grid-column: 2;
    margin-top: 0;
  }

  .plant-card {
    grid-column: span 6;
  }

  .plant-card--featured {
    grid-column: span 12;
  }

  .plant-lightbox figure {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  }

  .plant-lightbox__arrow--next {
    right: calc(40% + 1rem);
  }
}

@media (max-width: 700px) {
  .collection-back-to-nav {
    display: inline-flex;
  }

  .gallery-hero {
    min-height: clamp(600px, calc(100svh - 72px), 760px);
  }

  .gallery-hero__image {
    object-position: 62% center;
  }

  .gallery-hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 28, 18, 0.12) 18%, rgba(8, 28, 18, 0.88) 88%),
      linear-gradient(90deg, rgba(8, 28, 18, 0.42), transparent 90%);
  }

  .gallery-hero__content {
    left: 1.25rem;
    bottom: 2.2rem;
    width: calc(100% - 2.5rem);
  }

  .gallery-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .gallery-hero__content > p:not(.gallery-kicker) {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .gallery-intro {
    width: calc(100% - 2.5rem);
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 4rem;
  }

  .gallery-intro h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .collection-nav {
    position: relative;
    top: auto;
    width: calc(100% - 2.5rem);
    grid-template-columns: 1fr;
    box-shadow: 0 12px 32px rgba(23, 51, 37, 0.08);
  }

  .collection-nav a {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 51, 37, 0.1);
  }

  .collection-nav a:nth-child(3) {
    border-bottom: 1px solid rgba(23, 51, 37, 0.1);
  }

  .collection-nav a:last-child {
    border-bottom: 0;
  }

  .gallery-collections {
    width: calc(100% - 2.5rem);
  }

  .plant-collection {
    padding: 4.2rem 0;
    scroll-margin-top: 90px;
  }

  .plant-collection__heading {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.9rem;
    margin-bottom: 1.6rem;
  }

  .plant-collection__number {
    width: 2.5rem;
    height: 2.5rem;
  }

  .plant-collection__heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .plant-collection__heading > p:last-child {
    grid-column: 1 / -1;
    margin: 0.25rem 0 0;
  }

  .plant-grid {
    gap: 0.8rem;
  }

  .plant-card {
    grid-column: span 12;
  }

  .plant-card--featured {
    grid-column: span 12;
  }

  .plant-card__view {
    opacity: 1;
    transform: none;
  }

  .plant-card__caption {
    padding: 0.95rem 1rem 1.1rem;
  }

  .plant-card__media--feature {
    aspect-ratio: 4 / 3;
  }

  .plant-lightbox {
    width: calc(100% - 1rem);
    max-height: calc(100svh - 1rem);
  }

  .plant-lightbox figure {
    display: flex;
    min-height: 0;
    max-height: calc(100svh - 1rem);
    flex-direction: column;
    overflow-y: auto;
  }

  .plant-lightbox__image-wrap {
    flex: 0 0 min(58svh, 520px);
  }

  .plant-lightbox__image-wrap img {
    max-height: min(58svh, 520px);
  }

  .plant-lightbox figcaption {
    flex: 0 0 auto;
    padding: 1.25rem;
  }

  .plant-lightbox__arrow {
    top: min(29svh, 260px);
  }

  .plant-lightbox__arrow--next {
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plant-card,
  .plant-card__media img,
  .plant-card__view,
  .gallery-hero__link {
    transition-duration: 1ms;
  }
}

/* About and contact page refresh */
.about-page,
.contact-page {
  background: #f4f5ed;
}

.about-page main,
.contact-page main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 0;
}

.about-page .sketch-layer,
.contact-page .sketch-layer {
  display: none;
}

.page-kicker {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* About */
.about-editorial-hero {
  display: grid;
  width: min(1180px, calc(100% - 3rem));
  min-height: clamp(620px, 78svh, 800px);
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.about-editorial-hero__copy h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.35rem, 6.2vw, 6.35rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-wrap: balance;
}

.about-editorial-hero__copy > p:not(.page-kicker) {
  max-width: 570px;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.about-editorial-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.8rem;
}

.editorial-text-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(23, 51, 37, 0.22);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  transition: gap 180ms ease, border-color 180ms ease;
}

.editorial-text-link:hover {
  gap: 0.95rem;
  border-color: var(--accent-strong);
}

.about-editorial-hero__media {
  position: relative;
  min-height: 560px;
  margin: 0;
}

.about-editorial-hero__media::before {
  content: "";
  position: absolute;
  top: -1.3rem;
  right: -1.3rem;
  width: 58%;
  height: 58%;
  border-radius: 1.8rem;
  background: rgba(141, 187, 96, 0.2);
}

.about-editorial-hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
  object-position: right top;
  box-shadow: 0 35px 80px rgba(23, 51, 37, 0.18);
}

.about-editorial-hero__media figcaption {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  display: grid;
  width: min(235px, 48%);
  gap: 0.2rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 1.25rem;
  background: rgba(15, 47, 31, 0.9);
  color: white;
  box-shadow: 0 20px 45px rgba(8, 28, 18, 0.24);
  backdrop-filter: blur(12px);
}

.about-editorial-hero__media figcaption strong {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.about-editorial-hero__media figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
}

.about-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1.68fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(5rem, 9vw, 8rem) max(1.5rem, calc((100vw - 1180px) / 2));
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 15%, rgba(141, 187, 96, 0.2), transparent 30%),
    #153423;
  color: white;
}

.about-story__background {
  position: absolute;
  top: 1rem;
  right: 0;
  bottom: 1rem;
  width: min(74vw, 760px);
  border-radius: 2rem 0 0 2rem;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, rgba(141, 187, 96, 0.95) 35%, rgba(30, 86, 54, 0.98) 100%);
  transform: translateX(calc(100% - (var(--story-panel-progress, 0) * 100%)));
  box-shadow: 0 24px 64px rgba(8, 28, 18, 0.24);
  z-index: 0;
}

.about-story__marker,
.about-story__copy {
  position: relative;
  z-index: 1;
}

.about-story__marker {
  align-self: start;
  margin: 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-story .page-kicker {
  color: #cceba8;
}

.about-story h2 {
  max-width: 12ch;
  margin: 0;
  padding: 0;
  color: white;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.about-story__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 2.2rem;
}

.about-story__columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.about-values {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.about-section-heading h2 {
  max-width: 13ch;
  margin: 0;
  padding: 0;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.about-section-heading > p {
  max-width: 430px;
  margin: 0 0 0.3rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-value-card {
  position: relative;
  min-height: 340px;
  padding: 1.6rem;
  border: 1px solid rgba(23, 51, 37, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(23, 51, 37, 0.08);
}

.about-value-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(141, 187, 96, 0.12);
}

.about-value-card > img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
}

.about-value-card__number {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  margin: 0;
  color: rgba(47, 106, 74, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
}

.about-value-card h3 {
  max-width: 12ch;
  margin: 4.5rem 0 0.8rem;
  padding: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.035em;
}

.about-value-card > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.91rem;
}

.about-process {
  display: grid;
  width: min(1180px, calc(100% - 3rem));
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  margin: 0 auto;
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.about-process__intro {
  position: sticky;
  top: 120px;
}

.about-process__intro h2 {
  max-width: 11ch;
  margin: 0;
  padding: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.1rem);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.about-process__intro > p:last-child {
  max-width: 390px;
  margin: 1rem 0 0;
}

.about-process__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 51, 37, 0.14);
}

.about-process__steps li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.65rem 0;
  margin-bottom: 5em;
  border-bottom: 1px solid rgba(23, 51, 37, 0.14);
}

.about-process__steps li > span {
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
}

.about-process__steps h3 {
  margin: 0 0 0.35rem;
  padding: 0;
  font-size: 1.35rem;
}

.about-process__steps p {
  margin: 0;
}

.about-cta {
  display: flex;
  width: min(1180px, calc(100% - 3rem));
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 1.8rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(225, 239, 210, 0.92)),
    #fff;
  box-shadow: 0 20px 55px rgba(23, 51, 37, 0.1);
}

.about-cta h2 {
  max-width: 19ch;
  margin: 0;
  padding: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.about-cta .button {
  flex: 0 0 auto;
}

/* Contact */
.contact-editorial-hero {
  display: grid;
  min-height: clamp(470px, 60svh, 650px);
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: stretch;
  background: #153423;
}

.contact-editorial-hero__copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 8vw, 7rem)
    max(1.5rem, calc((100vw - 1180px) / 2));
  color: white;
}

.contact-editorial-hero .page-kicker {
  color: #cceba8;
}

.contact-editorial-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: white;
  font-size: clamp(3.2rem, 6vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 1;
  text-wrap: balance;
}

.contact-editorial-hero__copy > p:not(.page-kicker) {
  max-width: 540px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.contact-editorial-hero__media {
  min-height: 470px;
  margin: 0;
  overflow: hidden;
}

.contact-editorial-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.contact-workspace {
  display: grid;
  width: min(1180px, calc(100% - 3rem));
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
  gap: 1rem;
  align-items: stretch;
  margin: clamp(4rem, 8vw, 7rem) auto;
}

.contact-details {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-radius: 1.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 90%, rgba(141, 187, 96, 0.2), transparent 35%),
    #173325;
  color: white;
}

.contact-details .page-kicker {
  color: #cceba8;
}

.contact-details h2 {
  max-width: 10ch;
  margin: 0;
  padding: 0;
  color: white;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.contact-details > div > p:last-child {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.contact-details__list {
  display: grid;
  gap: 0;
  margin: 2rem 0;
}

.contact-details__list > div {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details__list dt {
  margin-bottom: 0.35rem;
  color: #cceba8;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details__list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
  line-height: 1.55;
}

.contact-details__photo {
  position: relative;
  min-height: 230px;
  margin: auto 0 0;
  border-radius: 1.15rem;
  overflow: hidden;
}

.contact-details__photo img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.08);
  transform-origin: center top;
}

.contact-details__photo figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(7, 27, 17, 0.72);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(8px);
}

.contact-page .contact-workspace__form {
  display: block;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 1px solid rgba(23, 51, 37, 0.1);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 65px rgba(23, 51, 37, 0.1);
}

.contact-form__heading {
  max-width: 620px;
  margin-bottom: 2rem;
}

.contact-form__heading h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.contact-form__heading > p:last-child {
  margin: 0.8rem 0 0;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-page .contact-form .form-field {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 700;
}

.contact-page .contact-form .form-field > span {
  font-size: 0.76rem;
}

.contact-page .contact-form .form-field small {
  margin-left: 0.3rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 500;
}

.form-field--full {
  grid-column: 1 / -1;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  min-height: 3.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(23, 51, 37, 0.14);
  border-radius: 0.85rem;
  outline: none;
  background: #f7f8f2;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  border-color: rgba(47, 106, 74, 0.65);
  background: white;
  box-shadow: 0 0 0 4px rgba(141, 187, 96, 0.14);
}

.contact-form__footer {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(23, 51, 37, 0.1);
}

.contact-form__agreement {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding-top: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-form__agreement input {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  min-height: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  accent-color: var(--accent-strong);
}

.contact-form__agreement label {
  cursor: pointer;
}

.contact-form__agreement a {
  color: var(--accent-strong);
  font-weight: 700;
}

.privacy-policy {
  width: min(880px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

.privacy-page {
  background: var(--bg);
}

.privacy-page .sketch-layer {
  display: none;
}

.privacy-policy__hero {
  max-width: 650px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.privacy-policy__hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.privacy-policy__hero > p:last-child {
  max-width: 540px;
  margin: 1.25rem 0 0;
}

.privacy-policy__content {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--panel);
}

.privacy-policy__content > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.privacy-policy__content section {
  max-width: 650px;
}

.privacy-policy__content h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.privacy-policy__content section p {
  margin: 0.65rem 0 0;
}

.privacy-policy__content ul {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.privacy-policy__content li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1px solid rgba(74, 110, 54, 0.16);
  border-radius: 0.85rem;
  background: rgba(141, 187, 96, 0.08);
  line-height: 1.65;
}

.privacy-policy__content li::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.1rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 0.3rem rgba(141, 187, 96, 0.16);
}

.privacy-policy__content a {
  color: var(--accent-strong);
  font-weight: 700;
}

.contact-form__footer p {
  max-width: 300px;
  margin: 0;
  font-size: 0.72rem;
}

.contact-form__footer .button {
  gap: 0.8rem;
  border: 0;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 980px) {
  .about-editorial-hero {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-editorial-hero__copy h1 {
    font-size: clamp(3.1rem, 7vw, 5rem);
  }

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

  .about-value-card {
    min-height: 250px;
  }

  .about-value-card h3 {
    margin-top: 3.5rem;
  }

  .contact-editorial-hero {
    grid-template-columns: 1fr 0.82fr;
  }

  .contact-workspace {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  }

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

  .form-field--full {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .about-editorial-hero {
    width: calc(100% - 2.5rem);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
  }

  .about-editorial-hero__copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .about-editorial-hero__media {
    min-height: 480px;
  }

  .about-editorial-hero__media::before {
    top: -0.8rem;
    right: -0.8rem;
  }

  .about-editorial-hero__media figcaption {
    right: -0.6rem;
    bottom: 1rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4.5rem 1.25rem;
  }

  .about-story__marker {
    width: fit-content;
  }

  .about-story h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .about-story__columns,
  .about-section-heading,
  .about-process {
    grid-template-columns: 1fr;
  }

  .about-story__columns {
    gap: 1rem;
  }

  .about-values {
    width: calc(100% - 2.5rem);
    padding: 4.5rem 0;
  }

  .about-section-heading {
    gap: 1rem;
  }

  .about-process {
    width: calc(100% - 2.5rem);
    gap: 2.5rem;
    padding-bottom: 4.5rem;
  }

  .about-process__intro {
    position: static;
  }

  .about-cta {
    width: calc(100% - 2.5rem);
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    padding: 1.6rem;
  }

  .contact-editorial-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contact-editorial-hero__copy {
    padding: 4.5rem 1.25rem;
  }

  .contact-editorial-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .contact-editorial-hero__media {
    min-height: 300px;
    max-height: 380px;
  }

  .contact-workspace {
    width: calc(100% - 2.5rem);
    grid-template-columns: 1fr;
    margin: 3.5rem auto;
  }

  .contact-details__photo {
    min-height: 260px;
  }

  .contact-page .contact-workspace__form {
    padding: 1.4rem;
  }

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

  .contact-form__footer .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .about-editorial-hero__media {
    min-height: 390px;
  }

  .about-editorial-hero__media figcaption {
    width: min(210px, 66%);
  }

  .about-values__grid {
    gap: 0.8rem;
  }

  .about-value-card {
    min-height: 280px;
    padding: 1.3rem;
  }
}

/* Scroll-driven stacked card arcs */
.scroll-arc-stack.is-arc-active {
  --arc-stage-height: 530px;
  --arc-height: 142px;
  position: relative;
  display: block;
  height: var(--arc-stage-height);
  min-height: var(--arc-stage-height);
  perspective: 1250px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.scroll-arc-stack.is-arc-active[data-arc-size="large"] {
  --arc-stage-height: 660px;
  --arc-height: 168px;
}

.scroll-arc-stack.is-arc-active[data-arc-size="compact"] {
  --arc-stage-height: 400px;
  --arc-height: 112px;
}

.scroll-arc-stack.is-arc-active::before {
  content: "";
  position: absolute;
  top: calc(62% - var(--arc-height));
  left: 50%;
  width: min(700px, 62%);
  height: var(--arc-height);
  border: 1px solid rgba(47, 106, 74, 0.2);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: var(--arc-progress, 0);
  transform: translateX(-50%);
  pointer-events: none;
}

.scroll-arc-stack.is-arc-active::after {
  content: "";
  position: absolute;
  top: 62%;
  left: 50%;
  width: min(760px, 68%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(47, 106, 74, 0.14),
    transparent
  );
  opacity: var(--arc-progress, 0);
  transform: translateX(-50%);
  pointer-events: none;
}

.scroll-arc-stack.is-arc-active > [data-arc-card] {
  position: absolute;
  top: 62%;
  left: 50%;
  width: min(330px, 30%);
  margin: 0;
  backface-visibility: hidden;
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.about-values__grid.scroll-arc-stack.is-arc-active > [data-arc-card] {
  width: min(350px, 31%);
}

.stats.scroll-arc-stack.is-arc-active {
  margin-top: 1rem;
  padding: 0;
}

.stats.scroll-arc-stack.is-arc-active > [data-arc-card] {
  min-height: 145px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 55px rgba(23, 51, 37, 0.15);
}

.home-page .scroll-arc-stack.is-arc-active > [data-arc-card],
.about-page .scroll-arc-stack.is-arc-active > [data-arc-card] {
  backdrop-filter: blur(14px);
  box-shadow:
    0 28px 60px rgba(23, 51, 37, 0.14),
    0 4px 12px rgba(23, 51, 37, 0.08);
}

.scroll-arc-stack.is-arc-active > [data-arc-card]:hover {
  border-color: rgba(47, 106, 74, 0.28);
  box-shadow:
    0 34px 72px rgba(23, 51, 37, 0.18),
    0 5px 15px rgba(23, 51, 37, 0.1);
}

@media (max-width: 900px) {
  .scroll-arc-stack.is-arc-active {
    --arc-stage-height: 500px;
    --arc-height: 126px;
  }

  .scroll-arc-stack.is-arc-active[data-arc-size="large"] {
    --arc-stage-height: 620px;
    --arc-height: 150px;
  }

  .scroll-arc-stack.is-arc-active[data-arc-size="compact"] {
    --arc-stage-height: 380px;
    --arc-height: 100px;
  }

  .scroll-arc-stack.is-arc-active > [data-arc-card],
  .about-values__grid.scroll-arc-stack.is-arc-active > [data-arc-card] {
    width: min(300px, 34%);
  }
}

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .scroll-arc-stack {
    transform-style: flat;
  }

  .scroll-arc-stack::before,
  .scroll-arc-stack::after {
    content: none;
  }
}

/* Homepage scroll experience below the hero slider */
.home-page {
  background:
    radial-gradient(circle at 8% 32%, rgba(141, 187, 96, 0.16), transparent 22%),
    radial-gradient(circle at 92% 70%, rgba(47, 106, 74, 0.1), transparent 24%),
    linear-gradient(180deg, #f7f8f2 0%, #edf2e6 48%, #f7f8f2 100%);
}

.home-page main {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.home-scroll-section {
  position: relative;
  margin-top: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(23, 51, 37, 0.09);
  border-radius: 2rem;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.home-scroll-section [data-home-item],
.home-scroll-section [data-depth-layer] {
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.home-stats-scene {
  margin-top: clamp(3rem, 7vw, 6rem);
  border: 1px solid rgba(23, 51, 37, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(141, 187, 96, 0.3), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 240, 222, 0.94));
  box-shadow: 0 24px 65px rgba(23, 51, 37, 0.1);
}

.home-stats-scene::before {
  border-color: rgba(47, 106, 74, 0.25);
}

.home-stats-scene.scroll-arc-stack.is-arc-active > [data-arc-card] {
  display: flex;
  min-height: 155px;
  flex-direction: column;
  justify-content: center;
  padding: 1.45rem;
  border-radius: 1.35rem;
}

.home-stats-scene .stats strong,
.home-stats-scene strong {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.home-stats-scene span {
  display: block;
  max-width: 24ch;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-story-scene {
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 88% 16%, rgba(141, 187, 96, 0.2), transparent 28%),
    linear-gradient(145deg, #173a27, #10291c);
  box-shadow: 0 30px 80px rgba(23, 51, 37, 0.2);
  color: white;
}

.home-story-scene::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(206, 235, 174, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.home-story-scene::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -240px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(206, 235, 174, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.home-story-scene .nursery-story__copy,
.home-story-scene .nursery-collage {
  position: relative;
  z-index: 1;
}

.home-story-scene .eyebrow {
  color: #cceba8;
}

.home-story-scene h2 {
  max-width: 11ch;
  color: white;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.home-story-scene .nursery-story__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.home-story-scene .text-link {
  color: #cceba8;
}

.home-story-scene .nursery-collage {
  transform-style: preserve-3d;
}

.home-story-scene .nursery-photo {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.27);
  transition: box-shadow 220ms ease, border-color 220ms ease, translate 220ms ease;
}

.home-story-scene .nursery-photo:hover {
  translate: 0 -6px;
  border-color: rgba(204, 235, 168, 0.48);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.34);
}

.home-principles-section,
.home-promise-section,
.home-process-section {
  padding: clamp(2.2rem, 5vw, 4.7rem);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(23, 51, 37, 0.08);
  backdrop-filter: blur(14px);
}

.home-scroll-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.home-scroll-section .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.7rem;
}

.home-scroll-section .section-heading h2 {
  max-width: 17ch;
  margin: 0;
  padding: 0;
  font-size: clamp(2.45rem, 4.8vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.home-principles-section .card-grid,
.home-promise-section .gallery-grid,
.home-process-section .process-grid {
  gap: 1rem;
}

.home-principles-section .product-card,
.home-promise-section .gallery-card,
.home-process-section .process-card {
  position: relative;
  min-height: 245px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 37, 0.1);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(23, 51, 37, 0.08);
  transition: translate 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-principles-section .product-card::before,
.home-promise-section .gallery-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.home-principles-section .product-card::after,
.home-promise-section .gallery-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(141, 187, 96, 0.1);
  pointer-events: none;
}

.home-principles-section .product-card:hover,
.home-promise-section .gallery-card:hover,
.home-process-section .process-card:hover {
  translate: 0 -7px;
  border-color: rgba(47, 106, 74, 0.24);
  box-shadow: 0 26px 55px rgba(23, 51, 37, 0.14);
}

.home-principles-section .product-card h3,
.home-promise-section .gallery-card h3 {
  max-width: 12ch;
  margin-top: 2rem;
  padding: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  letter-spacing: -0.04em;
}

.home-principles-section .product-card p,
.home-promise-section .gallery-card p,
.home-process-section .process-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

.home-promise-section {
  background:
    radial-gradient(circle at 10% 100%, rgba(141, 187, 96, 0.16), transparent 35%),
    rgba(239, 244, 232, 0.9);
}

.home-process-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 238, 0.94)),
    #fff;
}

.home-process-section .process-grid {
  position: relative;
  padding-top: 1.9rem;
}

.home-process-section .process-grid::before,
.home-process-section .process-grid::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
}

.home-process-section .process-grid::before {
  background: rgba(23, 51, 37, 0.1);
}

.home-process-section .process-grid::after {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(var(--home-scene-progress, 0));
  transform-origin: left center;
}

.home-process-section .process-card {
  min-height: 225px;
  border-top: 0;
}

.home-process-section .process-card h3 {
  margin: 0 0 1rem;
  padding: 0;
  color: var(--accent-strong);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

@media (max-width: 900px) {
  .home-story-scene {
    padding: 2rem;
  }

  .home-scroll-section .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-scroll-section .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .home-principles-section .product-card,
  .home-promise-section .gallery-card,
  .home-process-section .process-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .home-page main {
    width: calc(100% - 1rem);
  }

  .home-page .hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .home-stats-scene {
    margin-top: 2.5rem;
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .home-stats-scene > div {
    min-height: 0;
  }

  .home-story-scene,
  .home-principles-section,
  .home-promise-section,
  .home-process-section {
    margin-top: 2.5rem;
    padding: 1.25rem;
    border-radius: 1.35rem;
  }

  .home-story-scene h2,
  .home-scroll-section .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .home-story-scene .nursery-collage {
    margin-top: 0.5rem;
  }

  .home-process-section .process-grid {
    padding-top: 0;
    padding-left: 1.4rem;
  }

  .home-process-section .process-grid::before,
  .home-process-section .process-grid::after {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
  }

  .home-process-section .process-grid::after {
    transform: scaleY(var(--home-scene-progress, 0));
    transform-origin: center top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll-section [data-home-item],
  .home-scroll-section [data-depth-layer] {
    opacity: 1 !important;
    transform: none !important;
  }

  .home-process-section .process-grid::after {
    transform: none;
  }
}

/* Full-width section bands and ambient scroll motion */
.home-page {
  background-color: var(--home-live-bg, #f7f8f2);
  background-image:
    radial-gradient(circle at 8% 28%, rgba(141, 187, 96, 0.12), transparent 23%),
    radial-gradient(circle at 91% 74%, rgba(47, 106, 74, 0.08), transparent 26%);
  transition: background-color 100ms linear;
}

.home-scroll-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.home-atmosphere__orb,
.home-atmosphere__ring,
.home-atmosphere__line {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.home-atmosphere__orb {
  border-radius: 50%;
  filter: blur(2px);
  mix-blend-mode: multiply;
}

.home-atmosphere__orb--one {
  top: 18%;
  left: -8rem;
  width: clamp(280px, 36vw, 560px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 38% 38%, rgba(183, 216, 148, 0.38), rgba(141, 187, 96, 0.06) 64%, transparent 72%);
}

.home-atmosphere__orb--two {
  right: -10rem;
  bottom: 8%;
  width: clamp(330px, 42vw, 650px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 44% 40%, rgba(91, 146, 117, 0.23), rgba(47, 106, 74, 0.04) 67%, transparent 74%);
}

.home-atmosphere__ring {
  top: 35%;
  right: 7%;
  width: clamp(180px, 23vw, 350px);
  aspect-ratio: 1;
  border: 1px solid rgba(47, 106, 74, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(47, 106, 74, 0.025),
    0 0 0 62px rgba(47, 106, 74, 0.018);
}

.home-atmosphere__line {
  top: 8%;
  bottom: 8%;
  left: max(1.25rem, calc((100vw - 1180px) / 2 - 2.2rem));
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(47, 106, 74, 0.2), transparent);
  transform: scaleY(var(--home-page-progress, 0));
  transform-origin: center top;
}

.home-stats-scene,
.home-scroll-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(23, 51, 37, 0.12);
  border-right: 0;
  border-bottom: 1px solid rgba(23, 51, 37, 0.12);
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-stats-scene {
  background:
    radial-gradient(circle at 50% 120%, rgba(141, 187, 96, 0.28), transparent 43%),
    rgba(237, 243, 230, 0.92);
}

.home-story-scene {
  padding-right: max(1.5rem, calc((100vw - 1180px) / 2));
  padding-left: max(1.5rem, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 16%, rgba(141, 187, 96, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(23, 58, 39, 0.98), rgba(16, 41, 28, 0.98));
}

.home-principles-section,
.home-promise-section,
.home-process-section {
  padding-right: max(1.5rem, calc((100vw - 1180px) / 2));
  padding-left: max(1.5rem, calc((100vw - 1180px) / 2));
  box-shadow: none;
  backdrop-filter: none;
}

.home-principles-section {
  background:
    radial-gradient(circle at 12% 85%, rgba(194, 150, 102, 0.09), transparent 30%),
    rgba(243, 234, 223, 0.94);
}

.home-promise-section {
  background:
    radial-gradient(circle at 10% 100%, rgba(141, 187, 96, 0.15), transparent 34%),
    rgba(227, 238, 225, 0.95);
}

.home-process-section {
  background:
    linear-gradient(135deg, rgba(238, 240, 232, 0.96), rgba(248, 248, 243, 0.96));
}

.nursery-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(185px, 1fr));
  gap: 0.9rem;
}

.nursery-family-link {
  min-width: 0;
  min-height: 0;
  border-radius: 1.35rem;
  transform-style: preserve-3d;
}

.nursery-family-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.nursery-family-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 24, 14, 0.72) 100%);
  pointer-events: none;
}

.nursery-family-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.nursery-family-link:first-child .nursery-family-card img {
  transform: scale(1.06);
  transform-origin: center top;
}

.nursery-family-link:nth-child(2) .nursery-family-card img {
  transform: scale(1.22);
  transform-origin: center top;
}

.nursery-family-card figcaption {
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(11, 38, 24, 0.68);
  font-size: 0.72rem;
}

.nursery-family-card figcaption span {
  color: #cceba8;
  font-size: 0.61rem;
}

.nursery-family-link:hover .nursery-family-card {
  translate: 0 -6px;
  border-color: rgba(204, 235, 168, 0.52);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.34);
}

.nursery-family-link:hover .nursery-family-card img {
  transform: scale(1.05);
}

.nursery-family-link:first-child:hover .nursery-family-card img {
  transform: scale(1.1);
}

.nursery-family-link:nth-child(2):hover .nursery-family-card img {
  transform: scale(1.26);
}

@media (max-width: 900px) {
  .home-story-scene,
  .home-principles-section,
  .home-promise-section,
  .home-process-section {
    padding-right: max(1.25rem, calc((100vw - 760px) / 2));
    padding-left: max(1.25rem, calc((100vw - 760px) / 2));
  }

  .nursery-family-grid {
    grid-template-rows: repeat(2, 210px);
  }
}

@media (max-width: 760px) {
  .home-stats-scene,
  .home-scroll-section {
    border-radius: 0;
  }

  .home-story-scene,
  .home-principles-section,
  .home-promise-section,
  .home-process-section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .home-atmosphere__ring {
    right: -4rem;
  }

  .home-atmosphere__line {
    left: 0.75rem;
  }

  .nursery-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 170px);
    gap: 0.7rem;
  }

  .nursery-family-card {
    border-radius: 1rem;
  }

  .nursery-family-card figcaption {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll-atmosphere {
    opacity: 0.16 !important;
  }

  .home-atmosphere__orb,
  .home-atmosphere__ring {
    transform: none !important;
  }

}

/* Seamless, scroll-linked color transitions between homepage scenes */
.home-stats-scene,
.home-scroll-section {
  margin-top: 0;
  isolation: isolate;
}

.stats.scroll-arc-stack.home-stats-scene {
  margin-top: 0;
}

.home-stats-scene {
  --section-morph-background:
    radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.82), transparent 27%),
    linear-gradient(118deg, rgba(198, 222, 174, 0.7), rgba(239, 245, 232, 0.96));
}

.home-story-scene {
  --section-morph-background:
    radial-gradient(circle at 76% 28%, rgba(204, 235, 168, 0.2), transparent 25%),
    linear-gradient(120deg, rgba(49, 98, 69, 0.82), rgba(13, 37, 24, 0.96));
}

.home-principles-section {
  --section-morph-background:
    radial-gradient(circle at 75% 28%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(120deg, rgba(222, 195, 163, 0.56), rgba(247, 239, 229, 0.96));
}

.home-promise-section {
  --section-morph-background:
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.75), transparent 27%),
    linear-gradient(120deg, rgba(176, 211, 154, 0.62), rgba(233, 242, 228, 0.97));
}

.home-process-section {
  --section-morph-background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(120deg, rgba(211, 220, 199, 0.58), rgba(248, 248, 242, 0.97));
}

.home-color-morph {
  position: absolute;
  inset: -20% -14%;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
  background: var(--section-morph-background);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  opacity: 0.34;
  clip-path: ellipse(12% 32% at 106% 50%);
  transform: translate3d(8%, 0, 0) scale(0.96);
  transform-origin: center right;
  backdrop-filter: blur(22px) saturate(125%);
  will-change: clip-path, transform, opacity;
}

.home-color-morph::before,
.home-color-morph::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-color-morph::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 30%, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(104deg, transparent 34%, rgba(255, 255, 255, 0.2) 48%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.home-color-morph::after {
  top: 9%;
  right: 7%;
  width: min(42vw, 620px);
  height: 72%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48% 52% 58% 42% / 44% 35% 65% 56%;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 70px rgba(255, 255, 255, 0.1);
  transform: rotate(-8deg);
}

.home-scroll-section > :not(.home-color-morph) {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .home-color-morph {
    inset: -14% -36%;
    backdrop-filter: blur(16px) saturate(118%);
  }

  .home-color-morph::after {
    right: 18%;
    width: 76vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-color-morph {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
}

/* Lightweight homepage motion: animate once instead of recalculating every scroll frame */
.home-page {
  transition: background-color 700ms ease;
}

.home-page .home-scroll-atmosphere {
  display: none;
}

.home-page [data-home-scene] [data-home-item] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 620ms ease var(--home-item-delay, 0ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--home-item-delay, 0ms);
  will-change: auto;
}

.home-page [data-home-scene] [data-home-motion="story-copy"] {
  transform: translate3d(-34px, 18px, 0);
}

.home-page [data-home-scene] [data-home-motion="story-media"] {
  transform: translate3d(34px, 18px, 0);
}

.home-page [data-home-scene] [data-home-motion="slide-left"] {
  transform: translate3d(-28px, 18px, 0);
}

.home-page [data-home-scene] [data-home-motion="slide-right"] {
  transform: translate3d(28px, 18px, 0);
}

.home-page [data-home-scene].is-scene-visible [data-home-item] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-stats-scene {
  padding: clamp(3.5rem, 6vw, 5rem) max(1.5rem, calc((100vw - 1180px) / 2));
}

.home-stats-scene > [data-arc-card] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 560ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-stats-scene > [data-arc-card]:nth-of-type(2) {
  transition-delay: 80ms;
}

.home-stats-scene > [data-arc-card]:nth-of-type(3) {
  transition-delay: 160ms;
}

.home-stats-scene.is-scene-visible > [data-arc-card] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-color-morph {
  border-radius: 55% 0 0 55%;
  opacity: 0.28;
  clip-path: none;
  transform: translate3d(22%, 0, 0) scaleX(0.42);
  transform-origin: center right;
  backdrop-filter: none;
  transition:
    opacity 760ms ease,
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 1050ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: auto;
}

[data-home-scene].is-scene-visible > .home-color-morph {
  border-radius: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1);
}

/* Two-row gallery carousel behind the nursery story */
.home-story-scene {
  min-height: clamp(680px, 70vw, 820px);
}

.home-story-scene > .gallery-backdrop-carousel {
  position: absolute;
  inset: -5% -2%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
  justify-content: center;
  overflow: hidden;
  contain: layout paint;
  pointer-events: none;
  transform: rotate(-1.4deg) scale(1.04);
  transition: filter 480ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-backdrop-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(7, 27, 17, 0.94) 0%,
      rgba(7, 27, 17, 0.78) 34%,
      rgba(7, 27, 17, 0.48) 62%,
      rgba(7, 27, 17, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 29, 18, 0.42),
      rgba(8, 29, 18, 0.12) 45%,
      rgba(8, 29, 18, 0.5)
    );
  transition: opacity 480ms ease;
}

.gallery-backdrop-carousel__row {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: gallery-backdrop-drift 58s linear infinite;
  animation-play-state: paused;
  backface-visibility: hidden;
}

.gallery-backdrop-carousel__row--two {
  animation-duration: 78s;
  animation-direction: reverse;
}

.gallery-backdrop-carousel.is-carousel-running
  .gallery-backdrop-carousel__row {
  animation-play-state: running;
}

.gallery-backdrop-carousel__group {
  display: flex;
  flex: none;
  gap: clamp(0.6rem, 1vw, 0.85rem);
  padding-right: clamp(0.6rem, 1vw, 0.85rem);
}

.gallery-backdrop-carousel__group img {
  width: clamp(150px, 15vw, 220px);
  aspect-ratio: 32 / 19;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  object-fit: cover;
  opacity: 0.62;
  box-shadow: 0 12px 28px rgba(2, 17, 9, 0.22);
  transition: opacity 480ms ease, box-shadow 480ms ease;
}

.home-story-scene .nursery-story__copy,
.home-story-scene .nursery-collage {
  z-index: 3;
}

.home-story-scene .nursery-story__copy {
  isolation: isolate;
}

.home-story-scene .nursery-story__copy > * {
  transition: opacity 480ms ease;
}

.home-story-scene .nursery-story__copy::before {
  content: "";
  position: absolute;
  inset: -2.5rem -5rem -2.5rem -3.5rem;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 34% 50%,
    rgba(5, 24, 14, 0.95) 0%,
    rgba(5, 24, 14, 0.82) 38%,
    rgba(5, 24, 14, 0.3) 68%,
    transparent 78%
  );
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 480ms ease;
}

/* Let the gallery take over while its call-to-action is being explored. */
.home-story-scene:has(.text-link:hover) > .gallery-backdrop-carousel {
  z-index: 4;
  filter: saturate(1.12) contrast(1.04) brightness(1.08);
  transform: rotate(0deg) scale(1.08);
}

.home-story-scene:has(.text-link:hover) .gallery-backdrop-carousel::after {
  opacity: 0;
}

.home-story-scene:has(.text-link:hover) .gallery-backdrop-carousel__group img {
  opacity: 0.96;
  box-shadow: 0 18px 42px rgba(2, 17, 9, 0.36);
}

.home-story-scene:has(.text-link:hover) .nursery-story__copy > :not(.text-link),
.home-story-scene:has(.text-link:hover) .nursery-collage {
  opacity: 0;
}

.home-story-scene:has(.text-link:hover) .nursery-story__copy::before {
  opacity: 0;
}

.home-story-scene:has(.text-link:hover) .nursery-story__copy {
  z-index: 5;
}

@keyframes gallery-backdrop-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 900px) {
  .home-story-scene {
    min-height: 0;
  }

  .gallery-backdrop-carousel__group img {
    width: clamp(135px, 23vw, 180px);
  }

  .gallery-backdrop-carousel::after {
    background: rgba(7, 27, 17, 0.7);
  }

  .home-story-scene .nursery-story__copy::before {
    inset: -2rem -2rem -2.5rem;
    background: radial-gradient(
      ellipse at 42% 42%,
      rgba(5, 24, 14, 0.96) 0%,
      rgba(5, 24, 14, 0.78) 52%,
      transparent 82%
    );
  }
}

@media (max-width: 760px) {
  .home-stats-scene {
    padding: 2.5rem 1.25rem;
  }

  .home-page [data-home-scene] [data-home-motion] {
    transform: translate3d(0, 20px, 0);
  }

  .home-story-scene > .gallery-backdrop-carousel {
    inset: -2% -8%;
    gap: 0.6rem;
  }

  .gallery-backdrop-carousel__row {
    animation-duration: 64s;
  }

  .gallery-backdrop-carousel__row--two {
    animation-duration: 86s;
  }

  .gallery-backdrop-carousel__group img {
    width: 132px;
    border-radius: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page [data-home-scene] [data-home-item],
  .home-stats-scene > [data-arc-card],
  .home-color-morph {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .gallery-backdrop-carousel__row {
    animation: none !important;
  }
}

/* Scroll-scrubbed plant growth sequence in the principles introduction */
.home-principles-section .section-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: clamp(0.9rem, 2vh, 1.6rem);
  text-align: center;
  position: relative;
  z-index: 6;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.home-principles-section .section-heading .eyebrow,
.home-principles-section .section-heading h2 {
  position: relative;
  z-index: 3;
}

.home-principles-section .section-heading .eyebrow {
  margin: 0;
}

.home-principles-section .section-heading h2 {
  max-width: 16ch;
  text-align: center;
}

.home-principles-section .card-grid {
  position: relative;
  z-index: 4;
}

.plant-growth-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(76vw, 880px);
  max-width: 100%;
  margin: 0;
  isolation: isolate;
  pointer-events: none;
}

.plant-growth-visual::before {
  content: "";
  position: absolute;
  inset: 10% 7% 5%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(141, 187, 96, 0.2),
    rgba(255, 255, 255, 0.08) 46%,
    transparent 72%
  );
  filter: blur(32px);
}

.plant-growth-visual__canvas {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 7%,
      #000 25%,
      #000 75%,
      rgba(0, 0, 0, 0.12) 93%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 7%,
      #000 25%,
      #000 75%,
      rgba(0, 0, 0, 0.12) 93%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 7%,
      #000 25%,
      #000 75%,
      rgba(0, 0, 0, 0.12) 93%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 7%,
      #000 25%,
      #000 75%,
      rgba(0, 0, 0, 0.12) 93%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

@media (max-width: 900px) {
  .home-principles-section .section-heading {
    grid-template-columns: 1fr;
  }

  .plant-growth-visual {
    width: min(125vw, 820px);
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 760px) {
  .plant-growth-visual {
    width: 138%;
    margin: 0 -19%;
    transform: none;
  }

  .plant-growth-visual__canvas {
    -webkit-mask-image:
      linear-gradient(
        90deg,
        transparent 0%,
        #000 28%,
        #000 72%,
        transparent 100%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        #000 24%,
        #000 76%,
        transparent 100%
      );
    mask-image:
      linear-gradient(
        90deg,
        transparent 0%,
        #000 28%,
        #000 72%,
        transparent 100%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        #000 24%,
        #000 76%,
        transparent 100%
      );
  }
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .home-principles-section {
    min-height: 250svh;
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .home-principles-section > .home-color-morph {
    inset: 0;
  }

  .home-principles-section .section-heading {
    position: sticky;
    top: clamp(4.75rem, 8vh, 6rem);
    display: grid;
    justify-items: center;
    gap: 0.4rem;
    min-height: 0;
    padding: 1.35rem max(1.5rem, calc((100vw - 1180px) / 2));
    margin-bottom: 0;
    isolation: isolate;
  }

  .home-principles-section .section-heading::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    bottom: -1.5rem;
    width: 100vw;
    z-index: -1;
    background: linear-gradient(180deg, rgba(243, 234, 223, 0.98) 70%, rgba(243, 234, 223, 0));
    transform: translateX(50%);
  }

  .home-principles-section .section-heading .eyebrow {
    margin: 0;
  }

  .home-principles-section .section-heading h2 {
    max-width: 18ch;
    font-size: clamp(2rem, 3.75vw, 3.8rem);
    letter-spacing: -0.06em;
    line-height: 0.97;
  }

  .home-principles-section .plant-growth-visual {
    position: sticky;
    top: calc(50svh + clamp(7rem, calc(5vw + 4.5rem), 9.5rem));
    z-index: 2;
    width: min(60vw, 720px);
    margin: clamp(2rem, 5vh, 4rem) auto 0;
    transform: translateY(-50%);
  }

  .home-principles-section .card-grid {
    margin-top: 24svh;
    padding-bottom: 12svh;
  }

  .home-principles-section .card-grid [data-home-item] {
    position: relative;
    z-index: 1;
    transition: opacity 520ms ease, transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .home-principles-section:not(.is-growth-cards-visible) .card-grid [data-home-item] {
    opacity: 0;
    transform: translate3d(0, 120px, 0) scale(0.92);
  }

  .home-principles-section.is-growth-cards-visible .card-grid [data-home-item] {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .home-principles-section:not(.is-growth-cards-visible) .card-grid [data-home-item]:first-child {
    transform: translate3d(-19vw, 29vh, 0) rotate(-8deg) scale(0.88);
  }

  .home-principles-section:not(.is-growth-cards-visible) .card-grid [data-home-item]:nth-child(3) {
    transform: translate3d(19vw, 29vh, 0) rotate(8deg) scale(0.88);
  }

  .home-principles-section.is-growth-cards-visible .card-grid [data-home-item]:nth-child(2) {
    transition-delay: 120ms;
  }

  .home-principles-section.is-growth-cards-visible .card-grid [data-home-item]:nth-child(3) {
    transition-delay: 240ms;
  }
}

@media (max-width: 900px) {
  .home-principles-section {
    padding-top: clamp(3.5rem, 9vw, 5rem);
    padding-bottom: clamp(3.5rem, 9vw, 5rem);
  }

  .home-principles-section .section-heading {
    gap: 0.8rem;
    margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
  }

  .home-principles-section .section-heading h2 {
    max-width: 14ch;
    font-size: clamp(2.2rem, 7.8vw, 3.9rem);
    line-height: 1;
  }

  .home-principles-section .plant-growth-visual {
    width: min(112vw, 740px);
    max-width: none;
    margin: 0 auto clamp(2.5rem, 7vw, 4rem);
    transform: translateX(1%);
  }

  .home-principles-section .card-grid {
    gap: 1rem;
  }

  .home-principles-section .product-card {
    min-height: 0;
    padding: clamp(1.25rem, 4vw, 1.6rem);
  }
}

@media (max-width: 600px) {
  .home-principles-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .home-principles-section .section-heading h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 10.3vw, 3rem);
  }

  .home-principles-section .plant-growth-visual {
    width: 122%;
    margin: -0.25rem -11% 2.25rem;
    transform: none;
  }

  .home-principles-section .card-grid {
    gap: 0.85rem;
  }
}

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  .home-page .hero-copy {
    margin-bottom: 4rem;
  }

  .home-page .hero-copy h1 {
    max-width: 21ch;
    margin-bottom: 0.7rem;
    font-size: clamp(1.7rem, 4.2vw, 2.25rem);
    line-height: 1.02;
  }

  .home-page .hero-copy .eyebrow {
    margin-bottom: 0.7rem;
  }

  .home-page .hero-copy .hero-text {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .collection-nav {
    position: relative;
    top: auto;
    margin-bottom: 1.25rem;
  }

  .collection-back-to-nav {
    display: inline-flex;
  }

  .plant-collection {
    scroll-margin-top: 1.5rem;
  }
}
