@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Epilogue:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
:root {
  --green-deep: #1B5E20;
  --green: #2E7D32;
  --green-bright: #43A047;
  --green-light: #E4F7E9;
  --sun: #FDB813;
  --saffron: #FF7A1A;
  --saffron-deep: #E05F00;
  --sun-deep: #F09A00;
  --gold: #FFC72C;
  --sky: #0288D1;
  --cream: #FCFBF5;
  --cream-dim: #F3EFDD;
  --card: #FFFFFF;
  --ink: #1A2E17;
  --line: rgba(20, 40, 20, 0.14);
  --brown: #5C3A21;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  padding-left: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.mono {
  font-family: 'IBM Plex Mono', monospace;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
::selection {
  background: var(--sun);
  color: var(--green-deep);
}
:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* ============ signature: soil-horizon rail ============ */
.horizon-rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  z-index: 80;
  display: flex;
  flex-direction: column;
}
.horizon-rail span {
  flex: 1;
  position: relative;
}
.horizon-rail span:nth-child(1) {
  background: var(--brown);
}
.horizon-rail span:nth-child(2) {
  background: var(--sun);
}
.horizon-rail span:nth-child(3) {
  background: var(--green-bright);
}
.horizon-rail span:nth-child(4) {
  background: var(--green-deep);
}
.horizon-rail span::after {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(20, 40, 20, 0.4);
  white-space: nowrap;
  display: none;
}
@media (min-width:1360px) {
  .horizon-rail span::after {
    display: block;
  }
}
/* ============ header ============ */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.topbar {
  font-size: 12.5px;
  border-bottom: 1px solid var(--line);
  background: var(--green-deep);
  color: var(--cream);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a:hover {
  color: var(--sun);
}
.topbar .social {
  display: flex;
  gap: 12px;
}
.topbar .social a {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(252, 251, 245, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
nav.mainnav {
  padding: 6px 0;
  transition: padding .25s ease;
}
nav.mainnav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 700;
}
.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 3px;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}
.brand small {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(20, 40, 20, 0.5);
  font-weight: 400;
}
.navlinks {
  display: flex;
  gap: 38px;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
}
.navlinks>li {
  position: relative;
  list-style: none;
}
.navlinks a {
  position: relative;
  padding: 6px 0;
  display: inline-block;
}
.navlinks>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--sun);
  transition: width .25s ease;
}
.navlinks>li:hover>a::after, .navlinks>li.active>a::after {
  width: 100%;
}
.navlinks>li.active>a {
  color: var(--green-deep);
  font-weight: 700;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--cream);
  border: 1px solid var(--line);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  box-shadow: 0 14px 30px rgba(20, 40, 20, 0.14);
}
.navlinks>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  font-size: 13.5px;
  border-radius: 2px;
}
.dropdown a:hover {
  background: var(--cream-dim);
}
.dropdown a span.f {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--green);
}
.navcta {
  background: var(--sun);
  color: var(--green-deep) !important;
  padding: 10px 12px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.navcta:hover {
  background: var(--sun-deep);
  transform: translateY(-2px);
}
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--green-deep);
  cursor: pointer;
}
/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 25px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: .01em;
  transition: all .2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--sun);
  color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.btn-ghost {
  border: 1px solid rgba(252, 251, 245, 0.5);
  color: var(--cream);
  font-weight: 600;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--green-deep);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--green);
  transform: translateY(-2px);
}
/* ============ page banner (interior pages) ============ */
.page-banner {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 25, 10, 0.85) 20%, rgba(10, 25, 10, 0.5));
}
.page-banner .wrap {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  color: var(--cream);
  font-size: clamp(28px, 4vw, 44px);
}
.breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: rgba(252, 251, 245, 0.75);
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a:hover {
  color: var(--sun);
}
/* ============ hero slider ============ */
.hero {
  position: relative;
  overflow: hidden;
  height: min(92vh, 720px);
  min-height: 480px;
  color: var(--cream);
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1764520236404-217bf3300ee4?fm=jpg&q=80&w=1800&auto=format&fit=crop');
}
.slide:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1753018302272-282d3ea2c430?fm=jpg&q=80&w=1800&auto=format&fit=crop');
}
.slide:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1564584812691-eab58e10a7f0?fm=jpg&q=80&w=1800&auto=format&fit=crop');
}
.slide.active .slide-content>* {
  animation: riseIn .9s ease both;
}
.slide.active .slide-content .eyebrow {
  animation-delay: .05s;
}
.slide.active .slide-content h1 {
  animation-delay: .15s;
}
.slide.active .slide-content p {
  animation-delay: .28s;
}
.slide.active .slide-content .hero-cta {
  animation-delay: .4s;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(10, 25, 10, 0.82) 10%, rgba(10, 25, 10, 0.35) 65%, rgba(10, 25, 10, 0.15));
}
.slide-content {
  position: relative;
  z-index: 1;
  padding: 0 32px 0 48px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.slide h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--cream);
  max-width: 16ch;
}
.slide p {
  margin-top: 18px;
  font-size: 16.5px;
  max-width: 48ch;
  color: rgba(252, 251, 245, 0.88);
}
.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.slide-dots {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 48px;
  display: flex;
  gap: 8px;
}
.slide-dots button {
  width: 26px;
  height: 3px;
  background: rgba(252, 251, 245, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.slide-dots button.active {
  background: rgba(252, 251, 245, 0.4);
}
.slide-dots button.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sun);
  animation: fillDot 5.5s linear;
}
@keyframes fillDot {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.slide-dots button::after {
  transform-origin: left;
}
.slide-arrows {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 26px;
  display: flex;
  gap: 10px;
}
.slide-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(252, 251, 245, 0.4);
  background: rgba(10, 25, 10, 0.25);
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  transition: all .2s ease;
}
.slide-arrows button:hover {
  background: var(--sun);
  color: var(--green-deep);
  border-color: var(--sun);
}
/* ABOUT */
.about {
  background: var(--green-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(27, 42, 32, 0.12);
}
.about-text p {
  margin-bottom: 16px;
  color: #31402F;
}
/* ============ sections ============ */
section {
  padding: 30px 0;
}
.section-head {
  max-width: 100%;
  margin-bottom: 44px;
}
.section-head .eyebrow {
  color: var(--green);
}
.section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
}
.section-head p {
  margin-top: 14px;
  color: rgba(26, 46, 23, 0.72);
  font-size: 15.5px;
  max-width: 100%;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
/* ============ scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.in>* {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in>*:nth-child(1) {
  transition-delay: .05s;
}
.reveal-stagger.in>*:nth-child(2) {
  transition-delay: .13s;
}
.reveal-stagger.in>*:nth-child(3) {
  transition-delay: .21s;
}
.reveal-stagger.in>*:nth-child(4) {
  transition-delay: .29s;
}
.reveal-stagger.in>*:nth-child(5) {
  transition-delay: .37s;
}
.reveal-stagger.in>*:nth-child(6) {
  transition-delay: .45s;
}
/* ============ photo panel family ============ */
.gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery .photo-panel {
    width: 100%;
    overflow: hidden;
}
.gallery .photo-panel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.photo-panel:hover img {
    transform:scale(1.15);
}
/* Tablet */
@media(max-width:992px){
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
/* Mobile */
@media(max-width:768px){
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* Small Mobile */
@media(max-width:480px){
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
.photo-panel {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}
.photo-panel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* gallery lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 10, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 30px;
  cursor: pointer;
}
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 251, 245, 0.12);
  border: 1px solid rgba(252, 251, 245, 0.3);
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.lightbox .lb-prev {
  left: 24px;
}
.lightbox .lb-next {
  right: 24px;
}
.lightbox .lb-cap {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(252, 251, 245, 0.8);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
}
.gallery-grid .photo-panel {
  cursor: pointer;
}
/* ============ about ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-copy p {
  color: rgba(26, 46, 23, 0.78);
  font-size: 15.5px;
  margin-bottom: 15px;
}
.about-visual {
  aspect-ratio: 4/3.3;
  padding: 24px;
}
.founded-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--sun);
  color: var(--green-deep);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  text-align: center;
  line-height: 1.1;
  z-index: 2;
}
.founded-badge b {
  font-size: 20px;
}
.founded-badge small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* vision/mission/quality */
.vmq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vmq-card {
  background: var(--cream-dim);
  border-radius: 4px;
  padding: 28px 26px;
  border-top: 3px solid var(--green-bright);
  transition: transform .3s ease, box-shadow .3s ease;
}
.vmq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(20, 40, 20, 0.1);
}
.vmq-card:nth-child(2) {
  border-top-color: var(--sun);
}
.vmq-card:nth-child(3) {
  border-top-color: var(--sky);
}
.vmq-card h4 {
  font-size: 16.5px;
  margin-bottom: 10px;
}
.vmq-card p {
  font-size: 14px;
  color: rgba(26, 46, 23, 0.68);
}
/* testing steps */
.testing {
  background: var(--cream-dim);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step-card {
  background: var(--cream);
  padding: 30px 26px;
  position: relative;
}
.step-card .stepnum {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--sun-deep);
  font-weight: 600;
  line-height: 1;
}
.step-card h4 {
  font-size: 15.5px;
  margin: 12px 0 8px;
}
.step-card p {
  font-size: 13.5px;
  color: rgba(26, 46, 23, 0.65);
}
/* founders */
.founders {
  background: var(--cream);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.founder-card {
  background: var(--cream-dim);
  border-radius: 4px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(20, 40, 20, 0.1);
}
.founder-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--sun), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--green-deep);
  font-weight: 700;
}
.founder-card h4 {
  font-size: 18px;
  margin-bottom: 2px;
}
.founder-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 9px;
  display: block;
}
.founder-card p {
  font-size: 14px;
  color: rgba(26, 46, 23, 0.7);
}
/* product categories */
.cat-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:18px;
}

.cat-card{
    border-radius:16px;
    padding:24px 16px;
    text-align:center;
    color:#fff;
    transition:transform .2s ease;
    scroll-margin-top:100px;
}

.cat-card:hover{
    transform:translateY(-6px);
}

.cat-card .cat-icon{
    width:44px;
    height:44px;
    margin:0 auto 14px;
    background:rgba(255,255,255,.22);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cat-card .cat-icon svg{
    width:24px;
    height:24px;
    stroke:#fff;
}

.cat-card h4{
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:4px;
}

.cat-card span{
    font-size:11.5px;
    color:rgba(255,255,255,.85);
    font-family:var(--font-mono);
}

/* Desktop (Default) */
.c1{background:linear-gradient(160deg,var(--green),var(--green-deep));}
.c2{background:linear-gradient(160deg,var(--saffron),var(--saffron-deep));}
.c3{background:linear-gradient(160deg,var(--sky),#12689B);}
.c4{background:linear-gradient(160deg,#6FBF3F,#3E8A1E);}
.c5{background:linear-gradient(160deg,var(--gold),#E0A500);}
.c6{background:linear-gradient(160deg,#B85FD8,#7A2E9C);}


/* Large Tablet */
@media (max-width: 992px){

    .cat-grid{
        grid-template-columns:repeat(3,1fr);
        gap:16px;
    }

    .cat-card{
        padding:20px 14px;
    }

}


/* Mobile */
@media (max-width: 576px){

    .cat-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .cat-card{
        padding:16px 10px;
    }

    .cat-card .cat-icon{
        width:38px;
        height:38px;
        margin-bottom:10px;
    }

    .cat-card .cat-icon svg{
        width:20px;
        height:20px;
    }

    .cat-card h4{
        font-size:13px;
    }

    .cat-card span{
        font-size:10px;
    }

}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: var(--cream);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 170px;
  transition: background .2s ease, transform .2s ease;
}
.product-card:hover {
  background: var(--cream-dim);
  transform: translateY(-4px);
}
.product-idx {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--sun-deep);
  letter-spacing: .06em;
}
.product-card h4 {
  font-size: 18px;
}
.product-card .formula {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: var(--green);
  margin-top: auto;
}
.quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.quad-card {
  background: var(--cream);
  padding: 28px 22px;
  transition: transform .3s ease;
}
.quad-card:hover {
  transform: translateY(-4px);
}
.quad-card .glyph {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--sun-deep);
}
.quad-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.quad-card p {
  font-size: 13.5px;
  color: rgba(26, 46, 23, 0.65);
}
.strengths {
  background: var(--green-deep);
  color: var(--cream);
}
.strengths .section-head h2 {
  color: var(--cream);
}
.strengths .section-head p {
  color: rgba(252, 251, 245, 0.7);
}
.strengths .section-head .eyebrow {
  color: var(--sun);
}
.strengths .section-head .eyebrow::before {
  background: var(--sun);
}
.strengths .quad-grid {
  background: rgba(252, 251, 245, 0.14);
  border: none;
}
.strengths .quad-card {
  background: var(--green-deep);
}
.strengths .quad-card .glyph {
  border-color: rgba(252, 251, 245, 0.35);
  color: var(--sun);
}
.strengths .quad-card h4 {
  color: var(--cream);
}
.strengths .quad-card p {
  color: rgba(252, 251, 245, 0.65);
}
/* infrastructure */
.infra {
  background: var(--cream);
}
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.infra-tile {
  aspect-ratio: 1/1.05;
}
.infra-tile .cap b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 14.5px;
  margin-bottom: 2px;
}
.infra-tile .cap span {
  font-size: 10.5px;
  opacity: 0.85;
}
/* top selling */
.topselling {
  background: var(--cream-dim);
}
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.brand-chip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 22px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s ease;
}
.brand-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun-deep);
}
.brand-chip:hover {
  border-color: var(--green-bright);
  transform: translateY(-3px);
}
/* gallery */
.gallery {
  background: var(--green-light);
}
.gallery-cta {
  margin-top: 28px;
}
/* tutorials/video */
.tutorials {
  background: var(--cream-dim);
}
.video-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/8;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 10, 0.45);
  transition: background .3s ease;
}
.video-card:hover::after {
  background: rgba(10, 25, 10, 0.6);
}
.play-btn {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform .3s ease;
}
.video-card:hover .play-btn {
  transform: scale(1.1);
}
.video-caption {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.video-caption h4 {
  font-size: 16px;
}
.video-caption span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(26, 46, 23, 0.55);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.video-thumb {
  aspect-ratio: 16/10;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 10, 0.4);
  border-radius: 4px;
}
.video-thumb .mini-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--cream);
  font-size: 15px;
}
.video-thumb .mini-play span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(252, 251, 245, 0.2);
  border: 1px solid rgba(252, 251, 245, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb-label {
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
}
/* ============ testimonial slider ============ */
.testimonial {
  background: var(--cream);
}
.test-slider {
  position: relative;
  overflow: hidden;
}
.test-track {
  display: flex;
  transition: transform .6s cubic-bezier(.65, 0, .35, 1);
}
.test-slide {
  min-width: 100%;
  padding: 2px;
}
.test-box {
  background: var(--cream-dim);
  border-radius: 6px;
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  border-left: 4px solid var(--sun);
}
.test-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 20px;
}
.test-box blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--green-deep);
  font-weight: 500;
}
.test-box cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13.5px;
  color: rgba(26, 46, 23, 0.6);
}
.test-box .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.test-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sun-deep);
}
.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.test-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 15px;
  cursor: pointer;
  transition: all .2s ease;
}
.test-controls button:hover {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--green-deep);
}
.test-dots {
  display: flex;
  gap: 8px;
}
.test-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
}
.test-dots button.active {
  background: var(--sun-deep);
  width: 22px;
  border-radius: 5px;
  transition: all .3s ease;
}
/* mini logo strip / stats */
.stats-strip {
  background: var(--green-deep);
  color: var(--cream);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--sun);
}
.stat-item .lbl {
  font-size: 13px;
  color: #fff;
  margin-top: 6px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .04em;
}
/* career */
.career {
  background: var(--green);
  color: var(--cream);
}
.career-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.career h2 {
  color: var(--cream);
}
.career p {
  color: rgba(252, 251, 245, 0.88);
  font-size: 15.5px;
  margin-top: 14px;
  max-width: 52ch;
}
.career-list {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.career-list li {
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.career-list li::before {
  content: "—";
  color: var(--sun);
}
.career-card {
  background: rgba(252, 251, 245, 0.12);
  border: 1px solid rgba(252, 251, 245, 0.3);
  border-radius: 4px;
  padding: 30px;
}
.career-card h4 {
  color: var(--cream);
  font-size: 17px;
  margin-bottom: 10px;
}
.career-card p {
  color: rgba(252, 251, 245, 0.82);
  font-size: 14px;
  margin-bottom: 20px;
}
.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.job-row {
  background: rgba(252, 251, 245, 0.1);
  border: 1px solid rgba(252, 251, 245, 0.25);
  border-radius: 4px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.job-row h4 {
  color: var(--cream);
  font-size: 15.5px;
}
.job-row span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(252, 251, 245, 0.7);
}
/* contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .full {
  grid-column: 1/-1;
}
.contact-form label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: var(--green-deep);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--green-bright);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.map-embed {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: var(--cream-dim);
  position: relative;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}
.form-note {
  font-size: 13px;
  color: rgba(26, 46, 23, 0.55);
  margin-top: 10px;
}
.toast {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 3px;
  font-size: 13.5px;
  display: none;
}
.toast.show {
  display: block;
}
/* CTA BANNER */
.cta-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.cta-banner svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  padding: 90px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 16px;
}
/* contact strip */
.contact-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
  color: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-item .ic {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--green-light);
  color: #1A2E17;
}
.contact-item h4 {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--saffron-deep);
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 3px;
}
.contact-item p, .contact-item a {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.82);
}
.contact-item a:hover {
  color: var(--sun);
}
/* image slide */
.brand-section {
  padding: 30px 0;
  background: #E4F7E9;
}
.brand-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}
.brandSwiper {
  padding: 10px 0;
}
.brandSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #fff;
  border-radius: 5px;
}
.brandSwiper img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: .3s;
}
.brandSwiper img:hover {
  filter: none;
  transform: scale(1.05);
}
/* footer */
footer {
  background: #0e3a11;
  /* color: rgba(252, 251, 245, 0.7); */
  color: #fff;
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  max-width: 32ch;
  color: #fff;
}
footer h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 15px;
}
footer ul {
  list-style: none;
}
footer li {
  margin-bottom: 9px;
  font-size: 14px;
}
footer a:hover {
  color: var(--cream);
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-row a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(252, 251, 245, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all .2s ease;
}
.social-row a:hover {
  border-color: var(--sun);
  color: var(--sun);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(252, 251, 245, 0.16);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(252, 251, 245, 0.5);
}
/* back to top */
.to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--green-deep);
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--sun-deep);
}
@media (max-width:920px) {
  body {
    padding-left: 0;
  }
  .horizon-rail {
    display: none;
  }
  .navlinks {
    display: none;
  }
  .burger {
    display: block;
  }
  .about-grid, .career-grid, .contact-layout {
    grid-template-columns: 1fr;
  }
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .product-grid, .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quad-grid, .vmq-grid, .steps-row, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid, .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .test-box .test-avatar {
    margin: 0 auto;
  }
  .contact-grid, .contact-form {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
}
@media (max-width:600px) {
  .product-grid, .quad-grid, .vmq-grid, .steps-row, .infra-grid, .gallery-grid, .stats-grid, .video-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .slide-content {
    padding-left: 32px;
  }
  .slide-dots {
    left: 32px;
  }
  .slide-arrows {
    right: 16px;
  }
}
/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}
/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
/* Common column */
[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
/* Columns */
.col-1 {
  width: 8.333333%;
}
.col-2 {
  width: 16.666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333333%;
}
.col-5 {
  width: 41.666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333333%;
}
.col-8 {
  width: 66.666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333333%;
}
.col-11 {
  width: 91.666667%;
}
.col-12 {
  width: 100%;
}
/* Responsive */
@media (max-width: 991px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4,
  .col-md-5, .col-md-6, .col-md-7, .col-md-8,
  .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4,
  .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8,
  .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    width: 100%;
  }
}
.founder-section {
  background: url('images/founder-bg.jpg') center center/cover no-repeat;
  padding: 80px 0;
}
.section-heading {
  color: #fff;
  padding: 20px;
}
.small-title {
  color: #FFD400;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
.line {
  width: 100%;
  height: 2px;
  background: #fff;
  margin-bottom: 25px;
}
.section-heading p {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
  transition: .4s;
  row-gap: 1px;
}
.founder-card img,
.founder-card h3,
.founder-card h5,
.founder-card p {
  margin: 0 !important;
  padding: 0 !important;
}
.founder-card:hover {
  transform: translateY(-10px);
}
.founder-img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}
.founder-card h3 {
  display: block;
  font-size: 25px;
  font-weight: 700;
}
.founder-card h5 {
  display: block;
  color: #28a745;
  font-size: 18px;
  margin-bottom: 15px !important;
  font-weight: 700;
}
.founder-card p {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
}
@media(max-width:991px) {
  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .line {
    margin: auto auto 25px;
  }
  .founder-img {
    width: 170px;
    height: 170px;
  }
}