:root {
  color-scheme: light;
  --blue: #2596be;
  --deep-blue: #2C5EAD;
  --night: #07151c;
  --ink: #102027;
  --muted: #5f6f76;
  --white: #fffdf7;
  --warm: #f7f4eb;
  --silver: #d8e3e8;
  --earth: #83765e;
  --leaf: #7db878;
  --line: rgba(16, 32, 39, 0.1);
  --shadow: 0 18px 48px rgba(0, 38, 56, 0.1);
  --card: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #f7faf9;
  color: var(--ink);
  overflow-wrap: anywhere;
}

body::before { content: none; }

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

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

button,
input {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 1rem;
  background: #061219;
  color: var(--white);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden,
.loader.intro-skip {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  width: 64px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loader p {
  margin: 0;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.intro-loader {
  overflow: hidden;
  min-width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 30%, rgba(37,150,190,0.22), transparent 26rem),
    linear-gradient(180deg, #061219 0%, #0a202b 55%, #f2fbff 56%, #d9eef6 100%);
}

.intro-brand {
  position: relative;
  z-index: 7;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.intro-brand img {
  width: min(220px, 58vw);
  filter: drop-shadow(0 18px 38px rgba(37,150,190,0.34));
}

.intro-brand p {
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.18em;
  line-height: 1.7;
}

.intro-fruits,
.intro-snow,
.intro-ice,
.intro-basket,
.intro-frost {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-fruits span {
  position: absolute;
  left: var(--x);
  top: -4rem;
  z-index: 5;
  color: #ffffff;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1;
  text-shadow: 0 10px 20px rgba(0,0,0,0.25);
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.26));
  transform: rotate(0deg) scale(0.9);
  animation: fruitDrop 4.25s cubic-bezier(.18,.72,.24,1) var(--d) both;
}

.intro-basket {
  --basket-bottom: clamp(8.6rem, 19vh, 12rem);
  --basket-width: clamp(11.2rem, 26vw, 17.6rem);
  --basket-body-height: clamp(4.5rem, 8vw, 6.1rem);
  --basket-rim-height: clamp(1.15rem, 2.3vw, 1.65rem);
}

.intro-basket span {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.basket-handle {
  z-index: 3;
  width: clamp(10.2rem, 24vw, 16.4rem);
  height: clamp(6.2rem, 12vw, 9rem);
  bottom: calc(var(--basket-bottom) + var(--basket-body-height) - 0.45rem);
  border: clamp(0.45rem, 0.9vw, 0.68rem) solid #b9822e;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background:
    repeating-linear-gradient(28deg, transparent 0 0.72rem, rgba(255,230,161,0.42) 0.76rem 0.88rem, transparent 0.92rem 1.5rem);
  box-shadow:
    inset 0 0.24rem 0 rgba(255,229,168,0.42),
    inset 0 -0.2rem 0 rgba(113,72,24,0.22),
    0 1rem 2.5rem rgba(0,0,0,0.18);
}

.basket-handle::before,
.basket-handle::after {
  content: "";
  position: absolute;
  bottom: -1.65rem;
  width: clamp(1rem, 2.5vw, 1.5rem);
  height: clamp(2rem, 4vw, 3rem);
  border-radius: 0.35rem 0.35rem 0 0;
  background:
    repeating-linear-gradient(0deg, rgba(91,58,20,0.5) 0 0.12rem, transparent 0.12rem 0.38rem),
    linear-gradient(180deg, #c18a31 0%, #9f691d 100%);
  box-shadow: inset 0.18rem 0 0 rgba(255,223,152,0.2);
}

.basket-handle::before {
  left: clamp(0.45rem, 1vw, 0.8rem);
}

.basket-handle::after {
  right: clamp(0.45rem, 1vw, 0.8rem);
}

.basket-back,
.basket-front,
.basket-weave {
  width: var(--basket-width);
  height: var(--basket-body-height);
  border-radius: 0 0 2.1rem 2.1rem;
}

.basket-back {
  z-index: 3;
  bottom: var(--basket-bottom);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(124,78,24,0.5) 0 0.18rem, transparent 0.18rem 19%, rgba(124,78,24,0.42) 19.25% 19.43%, transparent 19.43% 39%, rgba(124,78,24,0.42) 39.25% 39.43%, transparent 39.43% 59%, rgba(124,78,24,0.42) 59.25% 59.43%, transparent 59.43% 79%, rgba(124,78,24,0.42) 79.25% 79.43%, transparent 79.43% 100%),
    linear-gradient(180deg, #d3993c 0%, #bf842a 48%, #9d681e 100%);
  box-shadow:
    inset 0 -0.45rem 0 rgba(118,72,22,0.25),
    0 1.2rem 3rem rgba(0,0,0,0.22);
}

.basket-weave {
  z-index: 4;
  bottom: var(--basket-bottom);
  opacity: 0.95;
  background:
    repeating-linear-gradient(0deg, transparent 0 0.62rem, rgba(255,229,154,0.32) 0.64rem 0.78rem, transparent 0.8rem 1.32rem),
    repeating-linear-gradient(90deg, transparent 0 0.62rem, rgba(255,230,159,0.28) 0.64rem 0.78rem, transparent 0.8rem 1.32rem);
}

.basket-front {
  z-index: 6;
  width: calc(var(--basket-width) + 0.6rem);
  height: var(--basket-rim-height);
  bottom: calc(var(--basket-bottom) + var(--basket-body-height) - var(--basket-rim-height) + 0.15rem);
  background:
    repeating-linear-gradient(32deg, transparent 0 0.72rem, rgba(108,71,25,0.55) 0.75rem 0.9rem, transparent 0.93rem 1.45rem),
    linear-gradient(180deg, #e2aa5a 0%, #c78d3c 100%);
  border: 0.12rem solid rgba(125,82,28,0.55);
  border-radius: 0.18rem;
  box-shadow:
    inset 0 0.28rem 0 rgba(255,236,184,0.24),
    0 0.35rem 0 rgba(120,76,24,0.3);
}

.intro-snow span {
  position: absolute;
  top: -1rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 12px rgba(188,236,255,0.7);
  animation: snowFall 5s linear infinite;
}

.intro-snow span:nth-child(1) { left: 4%; animation-delay: -.2s; animation-duration: 4.6s; }
.intro-snow span:nth-child(2) { left: 10%; animation-delay: -1.1s; animation-duration: 5.3s; }
.intro-snow span:nth-child(3) { left: 18%; animation-delay: -.6s; animation-duration: 4.9s; }
.intro-snow span:nth-child(4) { left: 24%; animation-delay: -1.8s; animation-duration: 5.8s; }
.intro-snow span:nth-child(5) { left: 31%; animation-delay: -.9s; animation-duration: 4.7s; }
.intro-snow span:nth-child(6) { left: 38%; animation-delay: -2.1s; animation-duration: 5.4s; }
.intro-snow span:nth-child(7) { left: 45%; animation-delay: -.4s; animation-duration: 5.9s; }
.intro-snow span:nth-child(8) { left: 52%; animation-delay: -1.4s; animation-duration: 4.8s; }
.intro-snow span:nth-child(9) { left: 58%; animation-delay: -.7s; animation-duration: 5.5s; }
.intro-snow span:nth-child(10) { left: 64%; animation-delay: -1.9s; animation-duration: 4.5s; }
.intro-snow span:nth-child(11) { left: 70%; animation-delay: -.3s; animation-duration: 5.6s; }
.intro-snow span:nth-child(12) { left: 76%; animation-delay: -1.5s; animation-duration: 4.9s; }
.intro-snow span:nth-child(13) { left: 82%; animation-delay: -.8s; animation-duration: 5.7s; }
.intro-snow span:nth-child(14) { left: 88%; animation-delay: -2.2s; animation-duration: 4.6s; }
.intro-snow span:nth-child(15) { left: 94%; animation-delay: -1s; animation-duration: 5.2s; }
.intro-snow span:nth-child(16) { left: 14%; animation-delay: -2.5s; animation-duration: 6s; }
.intro-snow span:nth-child(17) { left: 48%; animation-delay: -2.8s; animation-duration: 5.1s; }
.intro-snow span:nth-child(18) { left: 86%; animation-delay: -2.4s; animation-duration: 5.9s; }

.intro-ice span {
  position: absolute;
  z-index: 2;
  color: rgba(190,240,255,0.88);
  font-size: clamp(1.2rem, 3vw, 2.6rem);
  text-shadow: 0 0 18px rgba(188,236,255,0.78);
  animation: iceFloat 4.8s ease-in-out infinite;
}

.intro-ice span:nth-child(1) { left: 14%; top: 21%; animation-delay: -.2s; }
.intro-ice span:nth-child(2) { left: 28%; top: 70%; animation-delay: -1.1s; }
.intro-ice span:nth-child(3) { left: 48%; top: 18%; animation-delay: -.7s; }
.intro-ice span:nth-child(4) { left: 70%; top: 68%; animation-delay: -1.8s; }
.intro-ice span:nth-child(5) { left: 84%; top: 24%; animation-delay: -1.4s; }

.intro-frost {
  z-index: 1;
  opacity: 0.8;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(188,236,255,0.22) 43% 44%, transparent 45%),
    linear-gradient(45deg, transparent 0 46%, rgba(255,255,255,0.18) 47% 48%, transparent 49%);
  background-size: 4.5rem 4.5rem;
  mask-image: radial-gradient(circle at 0 100%, black, transparent 54%);
}

.intro-frost-right {
  transform: scaleX(-1);
}

@keyframes fruitDrop {
  0% {
    left: var(--x);
    top: -4rem;
    transform: rotate(0deg) scale(0.9);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  46% {
    left: calc(var(--x) + 1.8rem);
    top: 48vh;
    transform: rotate(var(--r)) scale(1);
    opacity: 1;
  }
  74% {
    left: calc(50% - 1.25rem + var(--land-x));
    top: calc(100% - 15.6rem + var(--land-y));
    transform: rotate(var(--r)) scale(0.96);
    opacity: 1;
  }
  82% {
    left: calc(50% - 1.25rem + var(--land-x));
    top: calc(100% - 16.2rem + var(--land-y));
    transform: rotate(var(--r)) scale(1);
    opacity: 1;
  }
  100% {
    left: calc(50% - 1.25rem + var(--land-x));
    top: calc(100% - 15.95rem + var(--land-y));
    transform: rotate(var(--r)) scale(0.98);
    opacity: 1;
  }
}

@keyframes snowFall {
  from {
    transform: translate3d(0, -4vh, 0);
    opacity: 0;
  }
  14%, 82% {
    opacity: 0.88;
  }
  to {
    transform: translate3d(1.8rem, 105vh, 0);
    opacity: 0;
  }
}

@keyframes iceFloat {
  50% {
    transform: translateY(-0.8rem) rotate(12deg);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cursor-glow { display: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  transition: padding 0.35s ease, background 0.35s ease;
}

.site-header.scrolled {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 32, 39, 0.08);
  box-shadow: 0 12px 34px rgba(0, 28, 42, 0.08);
}

.site-header.inner-header {
  position: sticky;
  top: 0;
}

.nav-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled .nav-shell {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand img {
  height: 3rem;
  width: auto;
  filter: drop-shadow(0 15px 35px rgba(37,150,190,0.26));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header.scrolled .nav-links {
  color: var(--ink);
}

.mobile-menu-head,
.mobile-menu-backdrop,
.mobile-menu-close {
  display: none;
}

.nav-links a {
  position: relative;
  padding: 0.65rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--blue), var(--white));
  transition: transform 0.35s ease;
}

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

.menu-toggle {
  display: none;
  width: 3rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.site-header.scrolled .menu-toggle {
  color: var(--ink);
  border-color: rgba(16,32,39,0.16);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #061219;
}

.page-hero {
  min-height: max(38rem, 78svh);
}

.page-hero .hero-slide {
  position: relative;
  min-height: inherit;
  opacity: 1;
}

.page-hero .hero-slide::before {
  transform: scale(1.08);
}

.page-hero .hero-copy {
  width: min(940px, 100%);
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero .floating-card {
  bottom: clamp(2rem, 7vw, 5rem);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  padding: clamp(7.5rem, 12vw, 9rem) clamp(1rem, 6vw, 6rem) clamp(4.5rem, 7vw, 6rem);
  transition: opacity 1.4s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3,10,14,0.86), rgba(3,10,14,0.54) 48%, rgba(3,10,14,0.76)),
    linear-gradient(0deg, rgba(3,10,14,0.9), transparent 48%, rgba(3,10,14,0.28));
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.active::before {
  transform: scale(1.16);
}

.hero-copy {
  width: min(880px, 100%);
  color: var(--white);
  transform: translate3d(var(--px, 0), var(--py, 0), 0);
  transition: transform 0.18s ease-out;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: #bcecff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.13em;
  font-size: clamp(0.66rem, 1vw, 0.74rem);
  line-height: 1.45;
}

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

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

h1 {
  margin: 1.15rem 0 1.2rem;
  max-width: 760px;
  font-size: clamp(2.35rem, 5.1vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.98rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  box-shadow: 0 20px 60px rgba(37,150,190,0.34);
}

.btn.ghost {
  background: rgba(5,18,26,0.58);
  backdrop-filter: none;
}

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 14px rgba(37,150,190,0.12), 0 20px 60px rgba(37,150,190,0.34); }
}

.glass {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.floating-card {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 6vw, 6rem);
  bottom: clamp(5rem, 10vw, 8rem);
  width: min(320px, calc(100% - 2rem));
  padding: 1.2rem;
  border-radius: 1rem;
  color: var(--white);
  display: flex;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.hero-card.glass {
  border-color: rgba(255,255,255,0.2);
  background: rgba(5,18,26,0.74);
}

.floating-card svg {
  color: #bcecff;
  flex: 0 0 auto;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

@keyframes float {
  50% { transform: translateY(-16px); }
}

.slider-dots {
  position: absolute;
  z-index: 5;
  left: clamp(1.25rem, 6vw, 6rem);
  bottom: 2.2rem;
  display: flex;
  gap: 0.7rem;
}

.slider-dots button {
  width: 3rem;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
}

.slider-dots button.active {
  background: #fff;
}

.particles,
.footer-particles {
  display: none;
}

.particle {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(188,236,255,0.45);
  animation: drift linear infinite;
}

@keyframes drift {
  from { transform: translate3d(0, 110vh, 0) rotate(0deg); opacity: 0; }
  12%, 80% { opacity: 0.75; }
  to { transform: translate3d(var(--x), -10vh, 0) rotate(240deg); opacity: 0; }
}

.section {
  position: relative;
  padding: clamp(3.8rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.section:nth-of-type(even):not(.image-band):not(.impact-section):not(.why-section):not(.testimonials-section) {
  background-color: #ffffff;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-copy p,
.section-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-head {
  width: min(860px, 100%);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-head .eyebrow {
  color: var(--deep-blue);
}

.section h2,
.section h3 {
  color: var(--ink);
}

.image-band h2,
.impact-section h2,
.impact-section h3,
.why-section h2,
.why-section h3,
.testimonials-section h2,
.cta-section h2 {
  color: var(--white);
}

.impact-section .section-head .eyebrow,
.why-section .section-head .eyebrow,
.testimonials-section .section-head .eyebrow,
.cta-section .eyebrow {
  color: #bcecff;
}

.image-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5,15,20,0.82), rgba(5,15,20,0.68)),
    url('/assets/images/Orchard-Layout-Planning.webp') center / cover;
}

.image-band .section-copy p {
  color: rgba(255,255,255,0.84);
}

.image-band .eyebrow {
  color: #bcecff;
}

.feature-grid,
.service-grid,
.solution-grid,
.trust-grid,
.team-grid,
.blog-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.service-card,
.trust-card {
  min-height: 10rem;
  padding: 1.2rem;
  border-radius: 0.85rem;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.image-band .feature-card {
  background: #ffffff;
  border-color: rgba(255,255,255,0.88);
  box-shadow: 0 18px 42px rgba(0, 12, 18, 0.18);
}

.image-band .feature-card svg {
  color: var(--deep-blue);
}

.feature-card:hover,
.service-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,150,190,0.3);
  box-shadow: 0 18px 48px rgba(37,150,190,0.12);
}

.feature-card svg,
.service-card svg,
.trust-card svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #bcecff;
}

.feature-card h3 {
  margin: 1.7rem 0 0;
  color: var(--ink);
  font-size: 1rem;
}

.services-section {
  background:
    linear-gradient(180deg, #f7faf9, #eef8fb);
}

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

.service-card {
  background: #fff;
  color: var(--ink);
}

.service-card svg {
  color: var(--deep-blue);
}

.service-card h3 {
  margin: 1.3rem 0 0.7rem;
  font-size: 1.12rem;
  overflow-wrap: normal;
}

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

.detail-grid,
.process-grid,
.contact-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
}

.detail-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 0.9rem;
  min-width: 0;
}

.detail-panel h3 {
  margin: 0.8rem 0 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.detail-panel ul,
.detail-panel ol {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.process-card {
  position: relative;
  min-height: 14rem;
  padding: 1.25rem;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(44,94,173,0.12);
  box-shadow: var(--shadow);
  min-width: 0;
}

.process-card::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 2.4rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
  border-radius: 0.9rem;
}

.contact-card h3 {
  margin: 0.8rem 0 0.55rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 0.9rem;
  display: grid;
  gap: 1rem;
  min-width: 0;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 800;
}

.form-section-title {
  margin: 0.35rem 0 -0.2rem;
  color: var(--deep-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16,32,39,0.14);
  border-radius: 0.85rem;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,150,190,0.12);
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.form-actions p,
#formMessage {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

#formMessage.success {
  color: #267342;
  font-weight: 800;
}

#formMessage.error {
  color: #b42318;
  font-weight: 800;
}

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

.expertise-section {
  background: #ffffff;
}

.image-collage {
  position: relative;
  min-height: 36rem;
}

.image-collage img {
  position: absolute;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(5, 28, 38, 0.22);
}

.image-collage img:nth-child(1) {
  inset: 0 auto auto 0;
  width: 74%;
  height: 72%;
}

.image-collage img:nth-child(2) {
  right: 0;
  top: 18%;
  width: 48%;
  height: 48%;
}

.image-collage img:nth-child(3) {
  left: 16%;
  bottom: 0;
  width: 58%;
  height: 38%;
}

.expertise-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: #f7faf9;
  border: 1px solid rgba(44,94,173,0.12);
  color: var(--ink);
  font-weight: 800;
}

.expertise-list svg {
  color: var(--blue);
}

.impact-section,
.why-section {
  color: var(--white);
  background:
    linear-gradient(rgba(4,13,18,0.9), rgba(4,13,18,0.94)),
    url('/assets/images/Orchards-11-scaled.webp') center / cover;
}

.impact-section .section-head p,
.why-section .section-head p {
  color: rgba(255,255,255,0.82);
}

.stats-grid {
  width: min(1180px, 100%);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid article {
  min-height: 11rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.13);
  backdrop-filter: none;
}

.stats-grid strong {
  font-size: clamp(1.75rem, 3.2vw, 3.2rem);
  color: #bcecff;
  text-shadow: 0 0 30px rgba(37,150,190,0.44);
}

.stats-grid span {
  color: rgba(255,255,255,0.84);
  font-weight: 800;
}

.horizontal-track {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.horizontal-track article,
.project-card,
.blog-card {
  overflow: hidden;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(44,94,173,0.12);
  box-shadow: 0 14px 38px rgba(0, 22, 34, 0.1);
}

.horizontal-track img,
.project-card img,
.blog-card img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.horizontal-track article:hover img,
.project-card:hover img,
.blog-card:hover img {
  transform: scale(1.08);
}

.horizontal-track h3,
.blog-card h3 {
  margin: 0;
  padding: 1rem;
  color: var(--ink);
}

.solutions-section,
.project-section,
.blog-section {
  background: #f7faf9;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card {
  position: relative;
  min-height: clamp(17rem, 25vw, 20rem);
  overflow: hidden;
  border-radius: 0.9rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.35s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--img) center / cover;
  transition: transform 0.7s ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(4,12,18,0.9), rgba(4,12,18,0.28));
}

.solution-card:hover::before {
  transform: scale(1.12);
}

.solution-card svg {
  width: 2.2rem;
  height: 2.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.solution-card h3 {
  margin: 0;
  font-size: 1.32rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.why-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(37,150,190,0.28), transparent 22rem),
    radial-gradient(circle at 78% 44%, rgba(125,184,120,0.18), transparent 26rem),
    #061219;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.trust-card h3 {
  margin: 1.8rem 0 0;
}

.masonry-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 20rem;
  isolation: isolate;
}

.project-card.tall {
  grid-row: auto;
}

.project-card.wide {
  grid-column: auto;
}

.project-card img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 18, 0.04), rgba(4, 12, 18, 0.72));
  pointer-events: none;
}

.project-card div {
  position: absolute;
  inset: auto 0.85rem 0.85rem;
  z-index: 1;
  padding: 1rem;
  border-radius: 0.75rem;
  color: var(--white);
  background: rgba(5,18,26,0.88);
  backdrop-filter: none;
}

.project-card h3,
.project-card p {
  margin: 0;
}

.project-card h3 {
  color: #ffffff;
  font-size: 1rem;
}

.project-card p {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.86);
  font-size: 0.86rem;
  line-height: 1.5;
}

.team-section {
  background:
    linear-gradient(rgba(247,250,249,0.92), rgba(247,250,249,0.96)),
    url('/assets/images/People-Behind-OS.webp') center / cover;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
  padding: 1rem;
  text-align: center;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(44,94,173,0.12);
  box-shadow: 0 22px 70px rgba(0, 22, 34, 0.1);
  animation: none;
}

.team-card:nth-child(2),
.team-card:nth-child(4) {
  animation-delay: -2s;
}

.team-card img {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.team-card h3 {
  margin: 0 0 0.6rem;
}

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

.testimonials-section {
  color: var(--white);
  background:
    linear-gradient(rgba(5,16,22,0.9), rgba(5,16,22,0.92)),
    url('/assets/images/farmer-prosperity.webp') center / cover;
}

.testimonial-marquee {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.testimonial-track article {
  width: min(420px, 82vw);
  padding: 1.4rem;
  border-radius: 0.9rem;
  color: var(--ink);
}

.testimonial-track p {
  line-height: 1.7;
  color: var(--muted);
}

.testimonial-track strong {
  color: var(--ink);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.blog-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.blog-card {
  position: relative;
}

.blog-card h3 {
  position: relative;
}

.blog-card h3::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2px;
  margin-top: 0.7rem;
  background: var(--blue);
  transition: width 0.35s ease;
}

.blog-card:hover h3::after {
  width: 100%;
}

.cta-section {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) 1rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(5,14,20,0.72), rgba(5,14,20,0.78)),
    url('/assets/images/Orchard-img.webp') center / cover;
  animation: slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  to { transform: scale(1.08); }
}

.cta-section::after {
  content: none;
}

.cta-content {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 39, 0.1);
  box-shadow: 0 28px 80px rgba(0, 16, 24, 0.24);
}

.cta-content h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink);
}

.cta-content .eyebrow {
  color: var(--deep-blue);
}

.cta-content .hero-actions {
  justify-content: center;
  margin-top: 1.8rem;
}

.cta-content .btn.ghost {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(16, 32, 39, 0.18);
}

.cta-content .btn.ghost:hover {
  border-color: var(--blue);
  color: var(--deep-blue);
}

.not-found-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(7rem, 12vw, 9rem) 1rem clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  color: var(--white);
  text-align: center;
  isolation: isolate;
}

.not-found-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,21,28,0.72), rgba(7,21,28,0.9)),
    url('/assets/images/Orchards-11-scaled.webp') center / cover;
}

.not-found-content {
  width: min(760px, 100%);
}

.not-found-content h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.98;
}

.not-found-content p {
  width: min(620px, 100%);
  margin: 1.25rem auto 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.not-found-content .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1rem, 5vw, 5rem) 2rem;
  background: #07151c;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.footer-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-panel img {
  height: 3.2rem;
  margin-bottom: 1rem;
}

.footer-panel h3 {
  margin: 0 0 1rem;
  color: #bcecff;
}

.footer-panel a,
.footer-panel p {
  display: block;
  margin: 0 0 0.7rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.footer-panel a:hover {
  color: #bcecff;
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a,
.newsletter button {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.newsletter input::placeholder {
  color: rgba(255,255,255,0.62);
}

.newsletter button {
  flex: 0 0 auto;
  color: var(--white);
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 11rem;
  border: 0;
  border-radius: 0.75rem;
  filter: grayscale(0.2) contrast(0.95);
}

.copyright {
  width: min(1180px, 100%);
  margin: 2rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.62);
  text-align: center;
}

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

@media (max-width: 1100px) {
  .service-grid,
  .solution-grid,
  .trust-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 90;
    width: min(22rem, 86vw);
    display: grid;
    align-content: start;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 0;
    background: #ffffff;
    border-left: 1px solid rgba(16,32,39,0.12);
    box-shadow: -24px 0 70px rgba(0,0,0,0.22);
    backdrop-filter: none;
    color: var(--ink);
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.34s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 1rem 0.35rem;
    border-bottom: 1px solid rgba(16,32,39,0.08);
    color: var(--ink);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    color: var(--deep-blue);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0 1.25rem;
    border-bottom: 1px solid rgba(16,32,39,0.1);
    margin-bottom: 0.5rem;
  }

  .mobile-menu-head img {
    height: 2.35rem;
    width: auto;
  }

  .mobile-menu-close {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(16,32,39,0.14);
    border-radius: 50%;
    background: #f7faf9;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: block;
    background: rgba(3,10,14,0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.34s ease;
  }

  .mobile-menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

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

@media (max-width: 820px) {

  .split,
  .expertise-layout,
  .feature-grid,
  .service-grid,
  .solution-grid,
  .trust-grid,
  .stats-grid,
  .detail-grid,
  .process-grid,
  .contact-grid,
  .team-grid,
  .blog-grid,
  .footer-grid,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .project-card.wide {
    grid-column: auto;
  }

  .project-card.tall {
    grid-row: auto;
  }

  .masonry-grid {
    grid-auto-rows: 22rem;
  }

  .hero {
    min-height: max(34rem, 88svh);
  }

  .page-hero {
    min-height: auto;
  }

  .hero-slide {
    padding: 7rem 1rem 3.6rem;
    align-items: flex-end;
  }

  .page-hero .hero-slide {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .floating-card {
    display: none;
  }

  .image-collage {
    min-height: 24rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .nav-shell {
    min-height: 4rem;
  }

  .brand img {
    height: 2.55rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    line-height: 1.12;
  }

  .eyebrow {
    gap: 0.5rem;
    letter-spacing: 0.09em;
  }

  .eyebrow::before {
    width: 1.45rem;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

  .form-row,
  .form-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .feature-card,
  .service-card,
  .trust-card {
    min-height: auto;
  }

  .solution-card {
    min-height: 16rem;
  }

  .project-card {
    min-height: 18rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-content {
    padding: 1.5rem;
    border-radius: 0.85rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .image-collage {
    min-height: 22rem;
  }

  .cursor-glow {
    display: none;
  }

  .intro-brand img {
    width: min(180px, 62vw);
  }

  .intro-brand p {
    max-width: 18rem;
    font-size: 0.68rem;
  }

  .intro-fruits span {
    font-size: clamp(1.65rem, 9vw, 2.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .intro-fruits,
  .intro-snow,
  .intro-ice,
  .intro-basket,
  .intro-frost {
    display: none;
  }
}
