:root {
  --green-900: #00451f;
  --green-800: #005727;
  --green-700: #006b2d;
  --green-600: #14843d;
  --lime-500: #69be28;
  --lime-300: #a4d674;
  --brown-500: #8a6a32;
  --pale-green: #eef7e8;
  --pale-warm: #f7f5ee;
  --ink: #173d28;
  --text: #355445;
  --muted: #678073;
  --line: #dce7dd;
  --white: #fff;
  --black: #0d1c14;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1520px, calc(100vw - 80px));
  --section-space: clamp(5rem, 8vw, 8.5rem);
  --shadow-soft: 0 18px 52px rgba(9, 53, 27, 0.11);
  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 22px;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

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

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

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

::selection {
  background: var(--lime-300);
  color: var(--green-900);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  padding-block: var(--section-space);
}

.section--pale {
  background: var(--pale-green);
}

.section--warm {
  background: var(--pale-warm);
}

.section--green {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
}

.section--green h2,
.section--green h3,
.section--green .eyebrow {
  color: var(--white);
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading,
.section-heading--center {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  margin-inline: 0;
  text-align: left;
}

.section-heading--center .eyebrow {
  justify-content: flex-start;
}

.section-heading h2 {
  margin-bottom: 1rem;
  text-align: left;
}

.section-heading p:not(.eyebrow),
.section-heading--center p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin-inline: 0;
  text-align: left;
}

.lead {
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--green-700);
  border-radius: var(--radius-small);
  background: var(--green-700);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--green-900);
  background: var(--green-900);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.7rem;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-900);
}

.button--light:hover {
  border-color: var(--lime-500);
  background: var(--lime-500);
  color: var(--green-900);
}

.button--outline,
.button--outline-dark {
  background: transparent;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-900);
}

.button--outline-dark {
  color: var(--green-700);
}

.button--outline-dark:hover {
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--large {
  font-size: 0.86rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 69, 31, 0.08);
  box-shadow: 0 4px 20px -4px rgba(0, 45, 17, 0.06);
  transition: padding 300ms cubic-bezier(0.16, 1, 0.3, 1),
    background 300ms ease,
    box-shadow 300ms ease,
    top 300ms ease,
    transform 300ms ease;
}

/* Floating overlay on Home page */
.site-header--overlay {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header--overlay.is-scrolled {
  position: fixed;
  top: 10px;
  animation: navFloatIn 350ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navFloatIn {
  from {
    opacity: 0.8;
    transform: translateY(-8px);
  }

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

.site-header.is-scrolled:not(.site-header--overlay) {
  padding-block: 6px;
  box-shadow: 0 10px 30px -4px rgba(0, 69, 31, 0.1);
}

/* Nav Shell - Full Width Rounded Rectangle Container */
.nav-shell {
  position: relative;
  z-index: 100;
  display: grid;
  width: var(--container);
  min-height: 80px;
  align-items: center;
  margin-inline: auto;
  padding: 8px clamp(16px, 2.5vw, 32px);
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 2.8vw, 44px);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header--overlay .nav-shell {
  width: calc(100% - clamp(24px, 4vw, 56px));
  max-width: 1520px;
  padding: 8px clamp(18px, 2.5vw, 36px);
  border: 1px solid rgba(0, 69, 31, 0.1);
  border-radius: var(--radius-medium, 14px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 14px 40px -6px rgba(0, 45, 17, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.03);
}

.site-header--overlay.is-scrolled .nav-shell {
  min-height: 72px;
  border-color: rgba(220, 231, 221, 0.9);
  box-shadow: 0 18px 45px -8px rgba(0, 45, 17, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Brand Logo (Transparent) */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  padding: 0;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover {
  transform: scale(1.05);
}

.brand img {
  width: clamp(58px, 4.8vw, 70px);
  height: clamp(58px, 4.8vw, 70px);
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 69, 31, 0.1));
  transition: filter 260ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 4px 12px rgba(0, 69, 31, 0.2));
}

/* Desktop Navigation List */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.4vw, 22px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(12px, 1.2vw, 18px);
  border-radius: var(--radius-small, 8px);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.nav-link:hover {
  color: var(--green-800);
  background: rgba(105, 190, 40, 0.12);
  transform: translateY(-1px);
}

.nav-link.is-active {
  color: var(--green-900);
  font-weight: 700;
  background: rgba(0, 87, 39, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 87, 39, 0.12);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime-500);
  transform: translateX(-50%);
  box-shadow: 0 0 6px var(--lime-500);
  transition: transform 200ms ease;
}

/* Header CTA Button - Rounded Rectangle */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 24px;
  border-radius: var(--radius-small, 8px);
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 69, 31, 0.24);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1),
    background 240ms ease,
    border-color 240ms ease;
}

.header-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 650ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 69, 31, 0.34);
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
  border-color: rgba(255, 255, 255, 0.4);
}

.header-cta:hover::after {
  left: 150%;
}

.header-cta__arrow {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.header-cta:hover .header-cta__arrow {
  transform: translateX(3px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero carousel */
.hero-carousel {
  position: relative;
  min-height: 690px;
  height: clamp(690px, 80vh, 840px);
  overflow: hidden;
  background: var(--green-900);
}

.hero-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1000ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1000ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide::before,
.hero-slide::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-slide::before {
  background: linear-gradient(90deg, rgba(3, 23, 11, 0.85) 0%, rgba(3, 23, 11, 0.64) 38%, rgba(3, 23, 11, 0.2) 72%, rgba(3, 23, 11, 0.14) 100%);
}

.hero-slide::after {
  background: linear-gradient(0deg, rgba(1, 22, 9, 0.55) 0%, transparent 35%);
}

/* Ken Burns Subtle Cinematic Motion */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 9s cubic-bezier(0.25, 1, 0.5, 1), opacity 1000ms ease;
  will-change: transform;
}

.hero-slide.is-active img {
  transform: scale(1.01);
}

.hero-slide__inner {
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 50%;
  width: var(--container);
  transform: translate(-50%, -48%);
}

.hero-slide__copy {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.88);
}

/* Staggered Entrance Animations for Slide Content */
.hero-kicker,
.hero-slide h1,
.hero-slide h2,
.hero-slide__copy>p:not(.hero-kicker),
.hero-slide__copy .button {
  opacity: 0;
  transform: translateY(26px);
  will-change: transform, opacity;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
  color: var(--lime-300);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 42px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slide.is-active .hero-kicker {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 150ms,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}

.hero-slide.is-active .hero-kicker::before {
  transform: scaleX(1);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 920px;
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(3.75rem, 5vw, 5.8rem);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-slide.is-active h1,
.hero-slide.is-active h2 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 260ms,
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 260ms;
}

.hero-slide__copy>p:not(.hero-kicker) {
  max-width: 610px;
  margin-bottom: 1.75rem;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-slide.is-active .hero-slide__copy>p:not(.hero-kicker) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 380ms,
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 380ms;
}

.hero-slide .button--light {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1),
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.hero-slide .button--light::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 650ms ease;
}

.hero-slide .button--light:hover::after {
  left: 150%;
}

.hero-slide.is-active .hero-slide__copy .button {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 500ms,
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 500ms;
}

.hero-slide.is-active .hero-slide__copy .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero__image-note {
  position: absolute;
  z-index: 2;
  right: max(40px, calc((100vw - 1520px) / 2));
  bottom: 96px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  opacity: 0.8;
  transition: opacity 300ms ease;
}

.hero__image-note:hover {
  opacity: 1;
}

.carousel-controls {
  position: absolute;
  z-index: 4;
  bottom: 40px;
  left: 50%;
  display: flex;
  width: var(--container);
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  transform: translateX(-50%);
}

.carousel-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}

.carousel-arrow:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-900);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.carousel-arrow svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 220ms ease;
}

[data-carousel-prev]:hover svg {
  transform: translateX(-2px);
}

[data-carousel-next]:hover svg {
  transform: translateX(2px);
}

/* Animated Progress Dots */
.carousel-dots {
  display: flex;
  gap: 10px;
  margin-left: 8px;
  align-items: center;
}

.carousel-dot {
  position: relative;
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  overflow: hidden;
  transition: width 350ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms ease;
}

.carousel-dot.is-active {
  width: 52px;
  background: rgba(255, 255, 255, 0.32);
}

.carousel-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--lime-500);
  border-radius: 4px;
}

@keyframes dotProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.carousel-dot.is-active::after {
  animation: dotProgress 7.5s linear forwards;
}

.hero-carousel:hover .carousel-dot.is-active::after {
  animation-play-state: paused;
}

/* Trust / Highlights Cards Strip */
.trust-strip {
  position: relative;
  z-index: 10;
  padding: clamp(2.5rem, 4.5vw, 4rem) 0;
  background: linear-gradient(180deg, #fbfaf6 0%, #f3f6f0 100%);
  border-top: 1px solid rgba(220, 231, 221, 0.6);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(105, 190, 40, 0.4) 30%, rgba(0, 87, 39, 0.3) 70%, transparent 95%);
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.1rem, 1.8vw, 1.75rem);
  align-items: stretch;
}

.trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 69, 31, 0.08);
  border-radius: var(--radius-medium, 16px);
  padding: clamp(1.6rem, 2.2vw, 2.1rem) clamp(1.3rem, 1.8vw, 1.75rem);
  box-shadow: 0 4px 20px -2px rgba(9, 53, 27, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease;
  isolation: isolate;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime-500), var(--green-600));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px 16px 0 0;
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px -10px rgba(0, 69, 31, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  border-color: rgba(105, 190, 40, 0.45);
  transition-delay: 0s, 0s, 0s, 0s !important;
}

.trust-item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.trust-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.trust-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(105, 190, 40, 0.15) 0%, rgba(20, 132, 61, 0.07) 100%);
  border: 1px solid rgba(105, 190, 40, 0.3);
  color: var(--green-700);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    background 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  color: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 8px 20px -4px rgba(0, 87, 39, 0.28);
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 300ms ease;
}

.trust-badge {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.75;
  background: rgba(0, 69, 31, 0.04);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 69, 31, 0.08);
  transition: color 250ms ease, opacity 250ms ease, border-color 250ms ease, background 250ms ease;
}

.trust-item:hover .trust-badge {
  color: var(--green-800);
  opacity: 1;
  border-color: rgba(105, 190, 40, 0.4);
  background: rgba(105, 190, 40, 0.14);
}

.trust-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trust-item strong,
.trust-title {
  display: block;
  margin: 0 0 0.45rem 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color 250ms ease;
}

.trust-item:hover .trust-title {
  color: var(--green-800);
}

.trust-item p,
.trust-desc {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Staggered entrance animations for trust items */
.trust-item.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 550ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease;
}

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

.trust-item.reveal.is-visible:hover {
  transform: translateY(-8px);
}

.trust-item:nth-child(1) {
  transition-delay: 0.05s, 0.05s, 0s, 0s;
}

.trust-item:nth-child(2) {
  transition-delay: 0.15s, 0.15s, 0s, 0s;
}

.trust-item:nth-child(3) {
  transition-delay: 0.25s, 0.25s, 0s, 0s;
}

.trust-item:nth-child(4) {
  transition-delay: 0.35s, 0.35s, 0s, 0s;
}

/* Editorial splits */
.editorial-split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.editorial-split--reverse {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.editorial-split__image {
  position: relative;
}

.editorial-split__image::after {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 42%;
  height: 42%;
  border-right: 1px solid var(--lime-500);
  border-bottom: 1px solid var(--lime-500);
  content: "";
  pointer-events: none;
}

.editorial-split__image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.editorial-split__copy {
  max-width: 600px;
}

.editorial-split__copy h2 {
  margin-bottom: 1.5rem;
}

.editorial-split__copy p:not(.eyebrow) {
  margin-bottom: 1.2rem;
}

.fact-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.fact-note svg {
  flex: 0 0 auto;
  width: 22px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1.5;
}

/* Seedling cards */
.seedling-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.seedling-card {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d5e3d7;
  border-radius: var(--radius-medium);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.seedling-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.seedling-card__image {
  flex: 0 0 62%;
  display: block;
  overflow: hidden;
}

.seedling-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.seedling-card:hover .seedling-card__image img {
  transform: scale(1.035);
}

.seedling-card__body {
  flex: 1 1 38%;
  padding: 14px 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seedling-card__body h3 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.seedling-card__body h3 a:hover {
  color: var(--green-700);
}

.seedling-card__body p {
  min-height: auto;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.seedling-card__body .text-link {
  margin-top: auto;
}

.section-action {
  margin-top: 3.5rem;
  text-align: center;
}

/* Quality principles (Dark Emerald Modern Cards) */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.2vw, 2.25rem);
  align-items: stretch;
}

.quality-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(2rem, 3.2vw, 3rem) clamp(1.8rem, 2.6vw, 2.5rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-medium, 18px);
  box-shadow: 0 12px 36px -6px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: hidden;
  isolation: isolate;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms ease,
    background 350ms ease;
}

.quality-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime-500), var(--lime-300));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 18px 18px 0 0;
}

.quality-item::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 190, 40, 0.28) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 350ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.quality-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(164, 214, 116, 0.45);
  box-shadow: 0 24px 54px -10px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(105, 190, 40, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition-delay: 0s, 0s, 0s, 0s !important;
}

.quality-item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.quality-item:hover::after {
  opacity: 1;
  transform: scale(1.3);
}

.quality-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.quality-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(105, 190, 40, 0.15);
  border: 1px solid rgba(164, 214, 116, 0.3);
  color: var(--lime-300);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    background 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.quality-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-item:hover .quality-icon {
  transform: scale(1.08) rotate(4deg);
  background: linear-gradient(135deg, var(--lime-500) 0%, var(--green-600) 100%);
  color: var(--green-900);
  border-color: var(--lime-300);
  box-shadow: 0 8px 20px -3px rgba(105, 190, 40, 0.35);
}

.quality-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--lime-300);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.quality-item:hover .quality-number {
  background: rgba(105, 190, 40, 0.22);
  border-color: rgba(164, 214, 116, 0.45);
  color: var(--white);
  transform: translateY(-1px);
}

.quality-item h3 {
  max-width: 480px;
  margin: 0 0 0.85rem 0;
  color: var(--white);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-transform: none;
  transition: color 250ms ease;
}

.quality-item:hover h3 {
  color: var(--lime-300);
}

.quality-item p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Staggered entrance animation for quality cards */
.quality-item.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 550ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms ease,
    background 350ms ease;
}

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

.quality-item.reveal.is-visible:hover {
  transform: translateY(-8px);
}

.quality-item:nth-child(1) {
  transition-delay: 0.05s, 0.05s, 0s, 0s, 0s;
}

.quality-item:nth-child(2) {
  transition-delay: 0.15s, 0.15s, 0s, 0s, 0s;
}

.quality-item:nth-child(3) {
  transition-delay: 0.25s, 0.25s, 0s, 0s, 0s;
}

.quality-item:nth-child(4) {
  transition-delay: 0.35s, 0.35s, 0s, 0s, 0s;
}

/* Quality Principles (Light Theme Variant) */
.section--quality-light {
  background: linear-gradient(180deg, #f8faf8 0%, #edf5ee 100%);
  border-top: 1px solid rgba(0, 69, 31, 0.08);
  border-bottom: 1px solid rgba(0, 69, 31, 0.08);
}

.section--quality-light .section-heading h2 {
  color: var(--ink);
}

.section--quality-light .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section--quality-light .quality-item {
  background: var(--white);
  border: 1px solid rgba(0, 69, 31, 0.1);
  border-radius: var(--radius-medium, 18px);
  box-shadow: 0 10px 30px -4px rgba(0, 45, 17, 0.07),
              0 2px 6px rgba(0, 0, 0, 0.02);
}

.section--quality-light .quality-item::before {
  background: linear-gradient(90deg, var(--green-700), var(--lime-500));
}

.section--quality-light .quality-item::after {
  background: radial-gradient(circle, rgba(105, 190, 40, 0.18) 0%, transparent 70%);
}

.section--quality-light .quality-item:hover {
  background: var(--white);
  border-color: rgba(0, 69, 31, 0.25);
  box-shadow: 0 20px 45px -8px rgba(0, 45, 17, 0.14),
              0 0 20px rgba(105, 190, 40, 0.1);
}

.section--quality-light .quality-icon {
  background: rgba(0, 87, 39, 0.07);
  border: 1px solid rgba(0, 87, 39, 0.16);
  color: var(--green-700);
}

.section--quality-light .quality-item:hover .quality-icon {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  color: var(--lime-300);
  border-color: var(--green-700);
  box-shadow: 0 8px 20px -3px rgba(0, 69, 31, 0.25);
}

.section--quality-light .quality-number {
  background: rgba(0, 69, 31, 0.05);
  border: 1px solid rgba(0, 69, 31, 0.12);
  color: var(--green-700);
}

.section--quality-light .quality-item:hover .quality-number {
  background: rgba(0, 87, 39, 0.1);
  border-color: rgba(0, 87, 39, 0.25);
  color: var(--green-900);
}

.section--quality-light .quality-item h3 {
  color: var(--ink);
}

.section--quality-light .quality-item:hover h3 {
  color: var(--green-800);
}

.section--quality-light .quality-item p {
  color: var(--text);
}

/* Why Kimana */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.reason {
  min-height: 248px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.reason:hover {
  background: var(--pale-green);
}

.reason__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 2rem;
  border: 1px solid var(--lime-500);
  border-radius: 50%;
  color: var(--green-700);
  place-items: center;
}

.reason__icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.reason h3 {
  margin-bottom: 0.9rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.reason p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Nursery feature */
.nursery-feature {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: calc(100% - 24px);
  margin-inline: auto;
  border-radius: var(--radius-large);
}

.nursery-feature::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 28, 13, 0.82), rgba(3, 28, 13, 0.22) 70%), linear-gradient(0deg, rgba(0, 32, 13, 0.68), transparent 55%);
  content: "";
}

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

.nursery-feature__copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: clamp(4rem, 7vw, 7rem);
  color: rgba(255, 255, 255, 0.77);
}

.nursery-feature__copy h2 {
  margin-bottom: 1.4rem;
  color: var(--white);
}

.nursery-feature__copy .eyebrow {
  color: var(--lime-300);
}

.representative-label {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* Audiences */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--green-900);
}

.audience-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 29, 12, 0.94), rgba(0, 29, 12, 0.04) 70%);
  content: "";
}

.audience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.audience-card:hover img {
  transform: scale(1.04);
}

.audience-card__copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  color: rgba(255, 255, 255, 0.72);
}

.audience-card__copy h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* CTAs and location */
.commercial-cta {
  position: relative;
  overflow: hidden;
  width: calc(100% - 24px);
  margin-inline: auto;
  border-radius: var(--radius-large);
  background: var(--green-700);
  color: rgba(255, 255, 255, 0.75);
}

.commercial-cta::after {
  position: absolute;
  top: -35%;
  right: -8%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.commercial-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 400px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.commercial-cta h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--white);
}

.commercial-cta p {
  max-width: 650px;
}

.location-grid {
  display: grid;
  width: calc(100% - 24px);
  align-items: stretch;
  margin: 12px auto;
  border-radius: var(--radius-large);
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
}

.location-copy {
  display: flex;
  padding: clamp(38px, 6vw, 78px);
  background: var(--pale-green);
  flex-direction: column;
  justify-content: center;
}

.location-copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.location-map {
  min-height: 470px;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

/* Interior page hero (Full Width with Overlay Header) */
.page-hero {
  position: relative;
  min-height: 600px;
  height: clamp(600px, 72vh, 760px);
  overflow: hidden;
  background: var(--green-900);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(3, 23, 11, 0.86) 0%, rgba(3, 23, 11, 0.65) 38%, rgba(3, 23, 11, 0.2) 72%, rgba(3, 23, 11, 0.14) 100%);
}

.page-hero::after {
  background: linear-gradient(0deg, rgba(1, 22, 9, 0.55) 0%, transparent 35%);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 9s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.page-hero:hover > img {
  transform: scale(1.01);
}

.page-hero__inner {
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 50%;
  width: var(--container);
  transform: translate(-50%, -48%);
}

.page-hero__copy {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
}

.page-hero__copy .hero-kicker,
.page-hero__copy h1,
.page-hero__copy .lead {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

.page-hero__copy.is-visible .hero-kicker {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 150ms,
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}

.page-hero__copy.is-visible .hero-kicker::before {
  transform: scaleX(1);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

.page-hero__copy h1 {
  max-width: 920px;
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(3.75rem, 5vw, 5.8rem);
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-align: left;
}

.page-hero__copy.is-visible h1 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 260ms,
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 260ms;
}

.page-hero__copy .lead {
  max-width: 620px;
  margin-bottom: 1.75rem;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
}

.page-hero__copy.is-visible .lead {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 380ms,
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 380ms;
}

.page-hero--short {
  min-height: 520px;
  height: clamp(520px, 60vh, 640px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--green-700);
}

/* About - Statement Left-Aligned */
.statement {
  max-width: 980px;
  margin-inline: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 1.16;
  text-align: left;
}

.statement span {
  color: var(--green-700);
}

.story-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-grid h2 {
  position: sticky;
  top: 130px;
}

.story-copy p {
  margin-bottom: 1.5rem;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
}

.founder-section {
  padding-top: 0;
}

.founder-profile {
  display: grid;
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid #d7e7d8;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, #f7fbf4 0%, var(--pale-green) 100%);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
}

.founder-profile__initials {
  display: grid;
  width: 128px;
  height: 128px;
  border: 1px solid var(--lime-500);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.55rem;
  letter-spacing: -0.04em;
  place-items: center;
}

.founder-profile__copy {
  max-width: 720px;
}

.founder-profile__copy h2 {
  margin-bottom: 1rem;
}

.founder-profile__copy p:last-child {
  margin-top: 0.7rem;
  color: var(--muted);
}

.founder-profile__detail {
  display: grid;
  min-width: 190px;
  padding-left: clamp(24px, 4vw, 52px);
  border-left: 1px solid #c6ddc9;
  gap: 5px;
}

.founder-profile__detail span {
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-profile__detail strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.value-card {
  min-height: 270px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card span {
  color: var(--lime-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin: 3rem 0 1rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Nursery page */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  padding: 36px 28px 0 0;
  border-right: 1px solid var(--line);
}

.process-step:not(:first-child) {
  padding-left: 28px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--lime-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 2rem 0 1rem;
  text-transform: uppercase;
}

.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  grid-column: span 4;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.gallery-caption {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

/* Contact */
.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.contact-panel {
  position: sticky;
  top: 120px;
}

.contact-panel h2 {
  margin-bottom: 1.4rem;
}

.contact-list {
  display: grid;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.contact-list__item {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.contact-list__item svg {
  width: 20px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-list__item strong,
.contact-list__item span,
.contact-list__item a {
  display: block;
}

.contact-list__item strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list__item span,
.contact-list__item a {
  color: var(--muted);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.contact-list__item a:hover {
  color: var(--green-700);
}

.contact-form-wrap {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-medium);
  background: var(--pale-green);
}

.contact-form-wrap h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.contact-form-wrap>p {
  margin-bottom: 2.3rem;
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #bfd3c2;
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--ink);
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-700);
  outline: 2px solid rgba(105, 190, 40, 0.28);
  outline-offset: 0;
}

.form-helper {
  color: var(--muted);
  font-size: 0.75rem;
}

.form-status {
  margin-top: 18px;
  padding: 14px;
  border-left: 3px solid var(--brown-500);
  background: var(--white);
  color: var(--text);
  font-size: 0.88rem;
}

.form-status:empty {
  display: none;
}

.form-status--success {
  border-color: var(--green-700);
}

.contact-actions {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-action {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.contact-action:hover {
  background: var(--green-700);
  color: var(--white);
}

.contact-action svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* Product detail */
.product-hero {
  padding-block: clamp(4rem, 7vw, 7.5rem);
  background: var(--pale-green);
}

.product-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.product-hero__copy h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.product-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.product-hero__image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

.product-information {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.information-card {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.information-card__number {
  display: block;
  margin-bottom: 3rem;
  color: var(--lime-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.information-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.information-card p {
  color: var(--muted);
}

.split-cta {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.split-cta h2 {
  margin-bottom: 1rem;
}

.split-cta p:not(.eyebrow) {
  max-width: 650px;
}

/* Footer */
.site-footer {
  padding-top: clamp(4rem, 7vw, 7rem);
  background: #0c2f1b;
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.85fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.footer-logo {
  display: grid;
  width: 142px;
  height: 142px;
  background: var(--white);
  border-radius: 12px;
  place-items: center;
}

.footer-logo img {
  width: 138px;
  height: 138px;
  object-fit: contain;
}

.footer-strapline {
  margin: 1.7rem 0 0.8rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.footer-intro {
  max-width: 330px;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li+li {
  margin-top: 9px;
}

.footer-links a {
  font-size: 0.87rem;
  transition: color 150ms ease;
}

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

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact li {
  display: grid;
  align-items: start;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 0.84rem;
}

.footer-contact svg {
  color: var(--lime-300);
}

.footer-contact a {
  overflow-wrap: anywhere;
  transition: color 150ms ease;
}

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

.social-placeholders {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.social-placeholders span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  place-items: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4.5rem;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
   Virtual Seedling Growth Simulator
   ========================================================================== */
.section--simulator {
  background: linear-gradient(180deg, var(--green-900) 0%, #021a0d 50%, #011208 100%);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(164, 214, 116, 0.15);
  border-bottom: 1px solid rgba(164, 214, 116, 0.15);
}

.section--simulator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 190, 40, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section--simulator .section-heading h2,
.section--simulator .section-heading p {
  color: var(--white);
}

.section--simulator .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

/* Pulse badge */
.live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7);
  animation: livePulseAnim 2s infinite;
}

@keyframes livePulseAnim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(163, 230, 53, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0);
  }
}

/* Arena Grid Layout */
.simulator-arena {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: stretch;
}

/* Left Stage Box */
.simulator-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(164, 214, 116, 0.22);
  border-radius: var(--radius-large, 22px);
  padding: clamp(1.25rem, 2vw, 1.85rem);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
  z-index: 5;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(105, 190, 40, 0.15);
  border: 1px solid rgba(164, 214, 116, 0.35);
  border-radius: 100px;
  color: var(--lime-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stage-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-400);
}

.stage-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease;
}

.stage-play-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.stage-play-btn .icon-pause {
  display: none;
}

.stage-play-btn.is-playing {
  background: var(--lime-500);
  color: var(--green-900);
  border-color: var(--lime-400);
}

.stage-play-btn.is-playing .icon-play {
  display: none;
}

.stage-play-btn.is-playing .icon-pause {
  display: inline-block;
}

.stage-play-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* Stage Viewport & Canvas */
.stage-viewport {
  position: relative;
  flex: 1;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 30%, rgba(105, 190, 40, 0.08) 0%, rgba(0, 0, 0, 0.2) 80%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.sim-plant-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: 390px;
  overflow: visible;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Plant Morphology by Stage */
/* Stage 1: Germination */
[data-simulator][data-stage="1"] .sim-stem {
  stroke-dasharray: 220;
  stroke-dashoffset: 170;
  transition: stroke-dashoffset 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-simulator][data-stage="1"] .sim-cotyledons {
  transform: translateY(15px) scale(0.65);
  transform-origin: 200px 280px;
  transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-simulator][data-stage="1"] .sim-leaves-tier1,
[data-simulator][data-stage="1"] .sim-leaves-tier2,
[data-simulator][data-stage="1"] .sim-leaves-crown,
[data-simulator][data-stage="1"] .sim-dew {
  opacity: 0;
  transform: scale(0);
  transform-origin: 200px 200px;
  transition: all 500ms ease;
}
[data-simulator][data-stage="1"] .root-stage-1 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  transition: all 600ms ease;
}
[data-simulator][data-stage="1"] .root-stage-2,
[data-simulator][data-stage="1"] .root-stage-3 {
  opacity: 0;
  transition: opacity 400ms ease;
}
[data-simulator][data-stage="1"] .sim-sun-aura {
  opacity: 0.3;
}

/* Stage 2: Root Anchoring */
[data-simulator][data-stage="2"] .sim-stem {
  stroke-dasharray: 220;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-simulator][data-stage="2"] .sim-cotyledons {
  transform: translateY(0) scale(0.9);
  transform-origin: 200px 280px;
  transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-simulator][data-stage="2"] .sim-leaves-tier1 {
  opacity: 1;
  transform: scale(0.85);
  transform-origin: 200px 220px;
  transition: all 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 150ms;
}
[data-simulator][data-stage="2"] .sim-leaves-tier2,
[data-simulator][data-stage="2"] .sim-leaves-crown {
  opacity: 0;
  transform: scale(0);
  transition: all 400ms ease;
}
[data-simulator][data-stage="2"] .root-stage-1,
[data-simulator][data-stage="2"] .root-stage-2 {
  opacity: 1;
  transition: all 600ms ease;
}
[data-simulator][data-stage="2"] .root-stage-3 {
  opacity: 0;
}
[data-simulator][data-stage="2"] .sim-sun-aura {
  opacity: 0.5;
}

/* Stage 3: Leaf Expansion */
[data-simulator][data-stage="3"] .sim-stem {
  stroke-dasharray: 220;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-simulator][data-stage="3"] .sim-cotyledons {
  transform: scale(1);
  transform-origin: 200px 280px;
}
[data-simulator][data-stage="3"] .sim-leaves-tier1 {
  opacity: 1;
  transform: scale(1);
  transform-origin: 200px 220px;
  transition: all 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-simulator][data-stage="3"] .sim-leaves-tier2 {
  opacity: 1;
  transform: scale(0.9);
  transform-origin: 200px 160px;
  transition: all 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 150ms;
}
[data-simulator][data-stage="3"] .sim-leaves-crown {
  opacity: 0;
  transform: scale(0);
}
[data-simulator][data-stage="3"] .root-stage-1,
[data-simulator][data-stage="3"] .root-stage-2,
[data-simulator][data-stage="3"] .root-stage-3 {
  opacity: 0.8;
  transition: opacity 600ms ease;
}
[data-simulator][data-stage="3"] .sim-sun-aura {
  opacity: 0.75;
}
[data-simulator][data-stage="3"] .sim-dew {
  opacity: 0.7;
}

/* Stage 4: Field Ready */
[data-simulator][data-stage="4"] .sim-stem {
  stroke-dasharray: 220;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-simulator][data-stage="4"] .sim-cotyledons,
[data-simulator][data-stage="4"] .sim-leaves-tier1,
[data-simulator][data-stage="4"] .sim-leaves-tier2,
[data-simulator][data-stage="4"] .sim-leaves-crown {
  opacity: 1;
  transform: scale(1);
  transition: all 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-simulator][data-stage="4"] .root-stage-1,
[data-simulator][data-stage="4"] .root-stage-2,
[data-simulator][data-stage="4"] .root-stage-3 {
  opacity: 1;
  transition: opacity 600ms ease;
}
[data-simulator][data-stage="4"] .sim-sun-aura {
  opacity: 1;
}
[data-simulator][data-stage="4"] .sim-dew {
  opacity: 1;
  animation: dewShimmer 3s infinite;
}

@keyframes dewShimmer {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* Continuous plant subtle sway */
.sim-shoot {
  transform-origin: 200px 322px;
  animation: shootSway 7s ease-in-out infinite;
}

@keyframes shootSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(1.8deg); }
}

/* Floating Quality Stamp on Stage */
.stage-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 87, 39, 0.85);
  border: 1px solid rgba(164, 214, 116, 0.4);
  border-radius: 8px;
  color: var(--lime-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 400ms ease, transform 400ms ease;
  pointer-events: none;
}

.stage-stamp svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

[data-simulator][data-stage="4"] .stage-stamp {
  opacity: 1;
  transform: translateY(0);
}

/* Milestone Buttons */
.stage-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 1.25rem;
  z-index: 5;
}

.milestone-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-align: left;
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.milestone-pill__num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--lime-400);
  margin-bottom: 2px;
}

.milestone-pill__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.milestone-pill__day {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.milestone-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(164, 214, 116, 0.3);
  transform: translateY(-2px);
}

.milestone-pill.is-active {
  background: rgba(105, 190, 40, 0.18);
  border-color: var(--lime-400);
  box-shadow: 0 0 16px rgba(105, 190, 40, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.milestone-pill.is-active .milestone-pill__title {
  color: var(--lime-300);
}

/* Right: Control Deck & Telemetry HUD */
.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sim-info-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sim-info-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0.6rem;
}

.sim-info-box__header h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

.sim-info-box__days {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--lime-300);
  padding: 3px 10px;
  background: rgba(105, 190, 40, 0.15);
  border: 1px solid rgba(164, 214, 116, 0.3);
  border-radius: 100px;
}

.sim-info-box p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Interactive Boosters */
.sim-boosters {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
}

.sim-boosters__label,
.sim-telemetry__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-300);
  margin-bottom: 0.75rem;
}

.booster-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.booster-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.booster-btn__icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 200ms ease;
}

.booster-btn__copy strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.booster-btn__copy small {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.booster-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(164, 214, 116, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.booster-btn:hover .booster-btn__icon {
  transform: scale(1.2);
}

.booster-btn:active {
  transform: translateY(0);
}

/* Telemetry Bars */
.sim-telemetry {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
}

.telemetry-bar {
  margin-bottom: 0.85rem;
}

.telemetry-bar:last-child {
  margin-bottom: 0;
}

.telemetry-bar__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.8);
}

.telemetry-bar__info strong {
  color: var(--lime-300);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.telemetry-bar__track {
  width: 100%;
  height: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.telemetry-bar__fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--green-600) 0%, var(--lime-500) 100%);
  box-shadow: 0 0 10px rgba(105, 190, 40, 0.4);
  transition: width 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* CTA Box */
.sim-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(105, 190, 40, 0.14) 0%, rgba(0, 87, 39, 0.25) 100%);
  border: 1px solid rgba(164, 214, 116, 0.35);
  border-radius: 16px;
  padding: 1.1rem 1.35rem;
}

.sim-cta-box strong {
  display: block;
  font-size: 0.86rem;
  color: var(--white);
}

.sim-cta-box span {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.sim-cta-box .button {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.74rem;
  min-height: 42px;
}

/* Visual FX Layers */
.sim-fx-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

/* Water Droplet Particle FX */
.water-drop {
  position: absolute;
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.8), rgba(255, 255, 255, 0.9));
  border-radius: 4px;
  animation: waterFall 800ms linear forwards;
}

@keyframes waterFall {
  0% { transform: translateY(-20px); opacity: 1; }
  100% { transform: translateY(340px); opacity: 0; }
}

/* Sun Lens Flare FX */
.sun-flare-burst {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(250, 204, 21, 0.45) 0%, rgba(245, 158, 11, 0.15) 50%, transparent 80%);
  animation: sunFlareAnim 1.2s ease-out forwards;
}

@keyframes sunFlareAnim {
  0% { opacity: 0; transform: scale(0.6); }
  40% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* Breeze Wind Trail FX */
.breeze-gust {
  animation: breezePlantGust 1.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

@keyframes breezePlantGust {
  0% { transform: rotate(0deg); }
  30% { transform: rotate(6deg) translateX(4px); }
  65% { transform: rotate(-3deg) translateX(-2px); }
  100% { transform: rotate(0deg); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Responsive */
@media (max-width: 1180px) {
  .nav-shell {
    gap: clamp(8px, 1.5vw, 16px);
  }

  .desktop-nav {
    gap: clamp(2px, 0.5vw, 6px);
  }

  .nav-link {
    padding: 8px clamp(8px, 1vw, 12px);
    font-size: 0.84rem;
  }

  .header-cta {
    padding: 8px 16px;
    font-size: 0.76rem;
  }
}

@media (max-width: 1120px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr;
  }

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

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

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

  .site-header {
    top: 0;
    padding-block: 8px;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header--overlay {
    position: absolute;
    top: 10px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header--overlay.is-scrolled {
    position: fixed;
    top: 10px;
  }

  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    min-height: 64px;
    padding: 4px 12px;
    border-radius: var(--radius-medium, 14px);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 30, 13, 0.1);
    grid-template-columns: 1fr auto;
  }

  .site-header--overlay .nav-shell,
  .site-header--overlay:not(.is-scrolled) .nav-shell,
  .site-header--overlay.is-scrolled .nav-shell {
    width: min(100% - 24px, 760px);
    padding: 4px 12px 4px 16px;
    border: 1px solid rgba(0, 69, 31, 0.1);
    border-radius: var(--radius-medium, 14px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 30, 13, 0.16);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 69, 31, 0.05);
    cursor: pointer;
    place-content: center;
    gap: 5px;
    transition: background 200ms ease, transform 200ms ease;
  }

  .menu-toggle:hover {
    background: rgba(105, 190, 40, 0.16);
    transform: scale(1.05);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--green-900);
    transition: transform 220ms ease, opacity 220ms ease;
  }

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

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

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

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 78px 16px auto 16px;
    max-height: calc(100vh - 100px);
    display: block;
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 69, 31, 0.1);
    border-radius: var(--radius-medium, 16px);
    box-shadow: 0 24px 54px rgba(0, 45, 17, 0.22);
    overflow-y: auto;
    animation: menuSlideDown 260ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes menuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-12px) scale(0.97);
    }

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

  .site-header--overlay .mobile-menu {
    inset: 80px 16px auto 16px;
    padding-top: 22px;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
  }

  .mobile-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    transition: background 180ms ease, color 180ms ease;
  }

  .mobile-menu .nav-link:hover,
  .mobile-menu .nav-link.is-active {
    background: rgba(0, 87, 39, 0.08);
    color: var(--green-900);
  }

  .mobile-menu .nav-link::after {
    display: none;
  }

  .hero-carousel {
    min-height: 680px;
    height: min(84vh, 780px);
    padding-top: 0;
  }

  .hero-slide {
    top: 0;
  }

  .hero-slide__inner {
    top: 48%;
  }

  .hero-slide h1,
  .hero-slide h2 {
    max-width: 650px;
    font-size: clamp(3.1rem, 9vw, 5.6rem);
  }

  .hero__image-note {
    display: none;
  }

  .carousel-controls {
    bottom: 26px;
  }

  .editorial-split,
  .editorial-split--reverse,
  .product-hero__grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .editorial-split--reverse .editorial-split__copy {
    order: 2;
  }

  .editorial-split--reverse .editorial-split__image {
    order: 1;
  }

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

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

  .audience-card {
    min-height: 450px;
  }

  .commercial-cta__inner,
  .split-cta {
    align-items: start;
    padding-block: 4.5rem;
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-grid h2,
  .contact-panel {
    position: static;
  }

  .founder-profile {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .founder-profile__initials {
    width: 108px;
    height: 108px;
  }

  .founder-profile__detail {
    grid-column: 2;
    padding: 22px 0 0;
    border-top: 1px solid #c6ddc9;
    border-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
  }

  .product-information {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 30px);
    --section-space: 4.75rem;
  }

  body {
    font-size: 15px;
  }

  .nursery-feature,
  .commercial-cta,
  .location-grid,
  .page-hero {
    width: calc(100% - 12px);
    border-radius: var(--radius-medium);
  }

  .hero-carousel {
    min-height: 620px;
    height: 78vh;
    max-height: 720px;
  }

  .hero-slide::before {
    background: linear-gradient(90deg, rgba(3, 23, 11, 0.79), rgba(3, 23, 11, 0.42)), linear-gradient(0deg, rgba(3, 23, 11, 0.68), transparent 52%);
  }

  .hero-slide__inner {
    top: 48%;
  }

  .hero-slide h1,
  .hero-slide h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.9rem, 14.5vw, 4.6rem);
  }

  .hero-slide__copy>p:not(.hero-kicker) {
    max-width: 480px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-kicker {
    margin-bottom: 1rem;
    font-size: 0.66rem;
  }

  .carousel-controls {
    gap: 10px;
    justify-content: flex-start;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .trust-grid,
  .quality-grid,
  .reason-grid,
  .seedling-grid,
  .values-grid,
  .process-grid,
  .contact-form,
  .contact-actions {
    grid-template-columns: 1fr;
  }



  .simulator-arena {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .booster-buttons {
    grid-template-columns: 1fr;
  }

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

  .sim-cta-box .button {
    width: 100%;
    text-align: center;
  }

  .editorial-split__image::after {
    right: -8px;
    bottom: -8px;
  }

  .seedling-card__body p {
    min-height: auto;
  }

  .quality-item {
    min-height: 240px;
  }

  .reason {
    min-height: 220px;
  }

  .nursery-feature {
    min-height: 610px;
  }

  .page-hero,
  .page-hero--short {
    min-height: 510px;
    height: 74vh;
  }

  .page-hero__inner {
    top: 52%;
  }

  .page-hero__copy {
    padding-block: 2rem;
  }

  .statement {
    text-align: left;
  }

  .founder-profile {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founder-profile__detail {
    grid-column: auto;
  }

  .process-step,
  .process-step:not(:first-child),
  .process-step:nth-child(3) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .contact-form-wrap {
    margin-inline: 0;
  }

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

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-carousel {
    min-height: 600px;
    height: 82vh;
  }

  .hero-slide__inner,
  .page-hero__inner {
    top: 46%;
  }

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

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

  .carousel-dots {
    gap: 7px;
    margin-left: 2px;
  }

  .carousel-dot {
    width: 18px;
  }

  .carousel-dot.is-active {
    width: 34px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===================================================================
   SECRET UNIVERSE LOVE HEART DOT (FOOTER)
   =================================================================== */
.secret-universe-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  font-size: 0.78rem;
  color: #E8637F;
  text-decoration: none;
  opacity: 0.45;
  cursor: pointer;
  vertical-align: middle;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.secret-universe-dot:hover {
  opacity: 1;
  transform: scale(1.45);
  filter: drop-shadow(0 0 8px rgba(232, 99, 127, 0.95));
}